@font-face {
    font-family: "Poppins-Regular";
    src: url("../fonts/poppins/Poppins-Regular.ttf");
}

@font-face {
    font-family: "Poppins-SemiBold";
    src: url("../fonts/poppins/Poppins-SemiBold.ttf");
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: "Poppins-Regular";
    color: #333;
    font-size: 13px;
    margin: 0;
}

input, textarea, select, button {
    font-family: "Poppins-Regular";
    color: #333;
    font-size: 13px;
}

p, h1, h2, h3, h4, h5, h6, ul {
    margin: 0;
}

img {
    max-width: 100%;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

a:hover {
    text-decoration: none;
}

:focus {
    outline: none;
}

.wrapper {
    min-height: 100vh;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),url('/colorlib/images/background.jfif');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.inner {
    padding: 20px;
    background: #fff;
    max-width: 850px;
    margin: auto;
    display: flex;
    border-radius: 20px;
}

    .inner .image-holder {
        width: 70%;
    }

    .inner form {
        width: 50%;
        padding-top: 30px;
        padding-left: 30px;
        padding-right: 20px;
    }

    .inner h3 {
        font-size: 25px;
        font-family: "Poppins-SemiBold";
        text-align: left;
        margin-bottom: 28px;
        color: #49b9d3;
    }

.form-group {
    display: flex;
}

    .form-group input {
        width: 50%;
    }

        .form-group input:first-child {
            margin-right: 25px;
        }

.form-wrapper {
    position: relative;
}

    .form-wrapper i {
        position: absolute;
        bottom: 25px;
        right: 15px;
    }

.form-control {
    border: 1px solid #333;
    border-top: none;
    border-right: none;
    border-left: none;
    display: block;
    width: 100%;
    height: 30px;
    padding: 0;
    margin-bottom: 25px;
    border: solid 1px rgba(152, 152, 152, 0.54);
    height: 50px;
    padding: 25px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    transition: .3s;
}

    .form-control::-webkit-input-placeholder {
        font-size: 13px;
        color: #333;
        font-family: "Poppins-Regular";
    }

    .form-control::-moz-placeholder {
        font-size: 13px;
        color: #333;
        font-family: "Poppins-Regular";
    }

    .form-control:-ms-input-placeholder {
        font-size: 13px;
        color: #333;
        font-family: "Poppins-Regular";
    }

    .form-control:-moz-placeholder {
        font-size: 13px;
        color: #333;
        font-family: "Poppins-Regular";
    }

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-left: 20px;
}

    select option[value=""][disabled] {
        display: none;
    }

button {
    background-image: linear-gradient(to right, #49b9d3, #3974ef 99%);
    color: #fff;
    font-family: Axiforma;
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: 0.9px;
    text-align: center;
    border: none;
    text-shadow: none;
    line-height: 45px;
    border-radius: 10px;
    transition: .3s;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0);
    padding: 4px 12px;
    display: block;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Poppins-SemiBold";
}

    button i {
        margin-left: 10px;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    button:hover i, button:focus i, button:active i {
        -webkit-animation-name: hvr-icon-wobble-horizontal;
        animation-name: hvr-icon-wobble-horizontal;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
    }

@-webkit-keyframes hvr-icon-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px);
    }

    33.3% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }

    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }

    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }

    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes hvr-icon-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px);
    }

    33.3% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }

    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }

    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }

    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@media (max-width: 1199px) {
    .wrapper {
        background-position: right center;
    }
}

@media (max-width: 991px) {
    .inner form {
        padding-top: 10px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .inner {
        display: block;
    }

        .inner .image-holder {
            width: 100%;
        }

        .inner form {
            width: 100%;
            padding: 20px 0 20px;
        }

    .wrapper {
        min-height: 100vh;
        background-color: white;
        background: none;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .inner {
        display: block;
    }

        .inner .image-holder {
            width: 100%;
        }

        .inner form {
            width: 100%;
            padding: 40px 0 30px;
        }

    button {
        margin-top: 60px;
    }

    .wrapper {
        min-height: 100vh;
        background-color:white;
        background:none;
        display: flex;
        align-items: center;
    }
}

/*# sourceMappingURL=style.css.map */
