@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins";
}

.form_bg {
    background: url("../../images/form_bg.jpg");
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@media (max-height: 775px) {
    .form_bg {
        height: 100%;
    }
}

@media (max-width: 991px) {
    .form_bg {
        height: 100vh;
    }
}

.form_content {
    max-width: 1440px;
    margin: 0 auto;
    background-color: #fff;
    display: flex;
    flex-grow: 1;
    min-height: 60vh;
}

.form_content .left_side {
    width: 50%;
}

@media (max-width: 991px) {
    .form_content .left_side {
        width: 100%;
    }
}

.form_content .left_side form {
    padding: 70px 55px;
}

@media (max-width: 991px) {
    .form_content .left_side form {
        padding: 40px;
    }
}

.form_content .left_side form h4 {
    font-weight: 600;
    font-size: 60px;
    line-height: 60px;
    color: #181630;
    padding-bottom: 38px;
}

@media (max-width: 991px) {
    .form_content .left_side form h4 {
        font-size: 40px;
        line-height: 50px;
        padding-bottom: 20px;
    }
}

.form_content .left_side form .form_group {
    margin-bottom: 30px;
}

.form_content .left_side form .form_group label {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #181630;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .form_content .left_side form .form_group label {
        font-size: 18px;
    }
}

.form_content .left_side form .form_group .form_control {
    background: transparent;
    width: 100%;
    border-bottom: 1px solid #a3a3a3;
    border-radius: 5px;
    padding: 15px 15px 15px 37px;
    font-size: 22px;
    line-height: 14px;
    color: #999999;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0;
}

@media (max-width: 991px) {
    .form_content .left_side form .form_group .form_control {
        font-size: 18px;
    }
}

.form_content .left_side form .form_group .form_control:focus {
    outline: 0;
    box-shadow: none;
}

.form_content .left_side form .form_group .form_control::-moz-placeholder {
    font-weight: 400;
    font-size: 22px;
    line-height: 126.5%;
    color: #969696;
    opacity: 0.6;
}

.form_content .left_side form .form_group .form_control::placeholder {
    font-weight: 400;
    font-size: 22px;
    line-height: 126.5%;
    color: #969696;
    opacity: 0.6;
}

@media (max-width: 991px) {
    .form_content .left_side form .form_group .form_control::-moz-placeholder {
        font-size: 18px;
    }

    .form_content .left_side form .form_group .form_control::placeholder {
        font-size: 18px;
    }
}

.form_content .left_side form .form_group .icon_input {
    position: relative;
}

.form_content .left_side form .form_group .icon_input .place_icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.form_content .left_side form .form_group .icon_input .eye_icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.form_content .left_side form ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-bottom: 160px;
}

.form_content .left_side form ul li {
    display: inline-block;
}

.form_content .left_side form ul li a {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
}

.btn_login {
    background: linear-gradient(194.3deg, #20213a 5.5%, #787c9d 87.83%);
    box-shadow: 4px 7px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 20px;
    font-weight: 600;
    font-size: 23px;
    line-height: 23px;
    text-align: center;
    letter-spacing: 0.03em;
    color: #ffffff;
    display: inline-block;
    transition: 0.5s ease;
    text-align: center;
    margin-bottom: 20px;
    border: none;
    min-width: 180px;
}

@media (max-width: 991px) {
    .btn_login {
        padding: 16px;
        min-width: 160px;
    }
}

.form_content .left_side form p {
    font-weight: 400;
    font-size: 12px;
    line-height: 30px;
    color: #4a4844;
    margin-bottom: 0 !important;
}

.form_content .left_side form p a {
    font-weight: 600;
    color: #4a4844;
}

.form_content .left_side form .checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #1c1a34;
}

.form_content .left_side form .checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.form_content .left_side form .checkbox input:checked~.checkmark {
    background-color: #9005fd;
}

.form_content .left_side form .checkbox input:checked~.checkmark:after {
    display: block;
}

.form_content .left_side form .checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.form_content .left_side form .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 1px solid #969696;
}

.form_content .left_side form .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.form_content .right_side {
    width: 50%;
    background: url("../../images/side_img.jpg");
    background-size: cover;
    background-position: center;
}

@media (max-width: 991px) {
    .form_content .right_side {
        display: none;
    }
}

.form_content .right_side h2 {
    font-weight: 400;
    font-size: 34px;
    line-height: 30px;
    color: #fff;
    padding: 55px;
}

/*# sourceMappingURL=style.css.map */

.otp-input {
    display: inline-flex;
}

.otp-form-control {
    -webkit-transition: none;
    transition: none;
    width: 50px;
    height: 50px;
    text-align: center
}

.otp-form-control:focus {
    color: #3F4254;
    background-color: #ffffff;
    border-color: #884377;
    outline: 0;
}

.otp-form-control.otp-form-control-solid {
    background-color: #f3f5f9;
    border-color: #0179d9;
    color: #3F4254;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.otp-form-control.otp-form-control-solid:active,
.otp-form-control.otp-form-control-solid.active,
.otp-form-control.otp-form-control-solid:focus,
.otp-form-control.otp-form-control-solid.focus {
    background-color: #ebf0f3 !important;
    border-color: #ebf0f3 !important;
    color: #3F4254;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.otp-form-control:focus {
    color: #555;
    background-color: #fff;
    border-color: #9aaffe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(53 128 252 / 25%) !important;
}

.styled-checkbox {
    position: absolute;
    opacity: 0;
}

.styled-checkbox+label {
    position: relative;
    cursor: pointer;
    padding: 0;
}

.styled-checkbox+label:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    background: #ccc;
    border-radius: 3px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;

}

.styled-checkbox:hover+label:before {
    background: #ccc;
}

.styled-checkbox:checked+label:before {
    background: #ccc;
}

.styled-checkbox:disabled+label {
    color: #b8b8b8;
    cursor: auto;
}

.styled-checkbox:disabled+label:before {
    box-shadow: none;
    background: rgb(112, 112, 112);
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
}

.styled-checkbox:checked+label:before {
    background: #87C59C;
}

.styled-checkbox+label:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 9px;
    background: rgb(255 255 255);
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    transform: rotate(45deg);
}


.fill_this {
    background-color: #ccc;
    border-radius: 3px;
    display: inline-grid;
    padding: 5px;
    margin-bottom: 5px;
}