body{
    margin: 0;
    padding: 0;
}

.login_main {
    padding: 0 150px 100px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
}
.login_main:before {
    position: absolute;
    content: '';
    background: url(../images/rght-blckbg.png) no-repeat;
    top: 3em;
    right: 0;
    width: 165px;
    height: 350px;
    background-size: contain;
    background-position: right;
}
.left_img {
    width: 47%;
}
.right_form {
    width: 53%;
}
.login_banner img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}
.right_form h2 {
    font-size: 64px;    
    line-height: 66px;
    font-weight: 700;
    color: #000;
}
.right_form p {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    color: #000;
    width: 100%;
    max-width: 612px;
    margin: 12px 0;
}
.input_form input, 
.input_form select {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 1px solid #000;
    background-color: #FFF !important;
    padding: 0 30px;
    font-size: 20px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}
.input_form input::placeholder{
    color: #000;
}
.input_form input:focus, 
.input_form select:focus{
    outline: none;
}
.input_form {
    height: 78px;
    position: relative;
    margin-bottom: 25px;
}
.input_form:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    border: 1px solid #000;
    border-radius: 12px;
    top: 7px;
    left: 7px;
    z-index: -1;
}
.right_form form {
    width: 95%;
    margin-top: 10px;
    display: inline-block;
}
.left_img img {
    width: 90%;
    margin-top: 50px;
}
.input_form select {
    appearance: none;
    background: url(../images/dropdown.png) no-repeat;
    background-position: right 25px top 28px;
    background-size: 20px;
}



.form-area {
    background-color: #fff;
    box-shadow: 0px 5px 10px rgba(90, 116, 148, 0.3);
    padding: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-area .form-inner {
    width: 100%;
}
.intl-tel-input,
.iti{
  width: 100%;
  height: 100%;
  font-size: 20px;
}
.input_form .iti__arrow {
    margin-left: 8px;
    background: url(../images/dropdown.png) no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    border: 0;
}

.input_form.form_check:before {
    display: none;
}
.form_check {
    display: block;
    margin-bottom: 10px;
  }
  
  .form_check input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
  }
  
  .form_check label {
    position: relative;
    cursor: pointer;
    display: flex;
    gap: 15px;
    align-items: center;
}
  
  .form_check label:before {
    content: '';
    appearance: none;
    background-color: #000;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    width: 34px;
    height: 34px;
    border-radius: 4px;
}
  
.form_check input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    left: 12px;
    width: 10px;
    height: 20px;
    border: solid #ffffff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    z-index: 1;
}
.input_form.form_check label p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
    max-width: 565px;
    color: #000;
    font-family: "Poppins", sans-serif;
    margin: 0;
}
.input_form.form_check{
    position: relative;
}
.input_form.form_check:after {
    position: absolute;
    content: '';
    top: 11px;
    left: 4px;
    width: 34px;
    height: 34px;
    border-radius: 4px;
    border: 1px solid #000;
    pointer-events: none;
}
button.sbmt_btn {
    width: 270px;
    height: 85px;
    background: #FAA71A;
    border: 0;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: .4s all;
}
button.sbmt_btn:before {
    position: absolute;
    content: '';
    background: url(../images/butn-line.png) no-repeat;
    width: 145px;
    height: 90px;
    background-size: cover;
    top: 0;
    right: 16px;
    pointer-events: none;
}
button.sbmt_btn span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}
button.sbmt_btn:hover{
    background: #ffc727;
}



@media only screen and (max-width:1500px){
    .login_main {
        padding: 0 80px 60px;
    }
    .login_main .container {
        padding: 0;
    }
    .right_form h2 {
        font-size: 46px;
        line-height: 52px;
    }
    .right_form p {
        font-size: 16px;
        line-height: 22px;
        max-width: 474px;
        margin: 6px 0;
    }
    .input_form {
        height: 54px;
        margin-bottom: 18px;
    }
    .input_form input, 
    .input_form select {
        border-radius: 7px;
        padding: 0 15px;
        font-size: 15px;
    }
    .input_form:before {
        border-radius: 7px;
        top: 5px;
        left: 5px;
    }
    .intl-tel-input, 
    .iti {
        font-size: 15px;
    }
    .input_form .iti__arrow {
        margin-left: 5px;
        width: 13px;
        height: 13px;
    }
    .input_form select {
        background-position: right 18px top 20px;
        background-size: 14px;
    }
    .right_form form {
        width: 90%;
    }
    .left_img img {
        margin-top: 42px;
    }
    .login_main:before {
        top: 2em;
        width: 120px;
        height: 255px;
    }
    .login_banner img {
        margin-bottom: 20px;
    }
    .input_form.form_check label p {
        font-size: 14px;
        line-height: 22px;
        max-width: 444px;
    }
    .form_check label:before {
        margin-right: 3px;
        width: 24px;
        height: 24px;
    
        border-radius: 3px;
    }
    .input_form.form_check:after {
        top: 13px;
        left: 3px;
        width: 24px;
        height: 24px;    
        border-radius: 3px;
    }
    .form_check label {
        gap: 12px;
    }
    .form_check input:checked + label:after {
        top: 12px;
        left: 9px;
        width: 7px;
        height: 14px;
        border-width: 0 2px 2px 0;
    }
    button.sbmt_btn {
        width: 190px;
        height: 58px;
        border-radius: 10px;
    }
    button.sbmt_btn span {
        gap: 4px;
        font-size: 16px;
    }
    button.sbmt_btn span img{
        width: 22px;
    }
    .input_form.form_check {
        margin-bottom: 10px;
    }
    button.sbmt_btn:before {
        width: 118px;
        height: 69px;
        right: 2px;
    }
}

@media only screen and (max-width:991px){
    .login_main .container {
        padding: 0 !important;
    }
    .login_main {
        padding: 0 20px 60px;
    }
    .right_form form {
        width: 100%;
    }
    .login_main:before{
        display: none;
    }
}
@media only screen and (max-width:767px){
    .login_main {
        display: block;
    }
    .left_img img {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        display: block;
    }
    .left_img,
    .right_form{
        width: 100%;
    }
    .left_img {
        margin: 15px 0;
    }
    .right_form h2 {
        font-size: 34px;
        line-height: 40px;
    }
    .right_form p {
        font-size: 14px;
        line-height: 20px;
        margin: 4px 0;
    }
    .login_main {
        padding: 0 30px 40px;
    }
    button.sbmt_btn {
        width: 168px;
        height: 50px;
        border-radius: 8px;
    }
    button.sbmt_btn span {
        font-size: 14px;
    }
    button.sbmt_btn:before {
        width: 75px;
        height: 55px;
        right: 21px;
    }
    .form_check label:before {
        margin-right: 2px;
        width: 20px;
        height: 20px;
    }
    .input_form.form_check:after {
        top: 10px;
        left: 2px;
        width: 20px;
        height: 20px;
    }
    .form_check input:checked + label:after {
        top: 10px;
        left: 6px;
        width: 6px;
        height: 12px;
    }
    .input_form.form_check label p {
        font-size: 12px;
        line-height: 17px;
        max-width: 394px;
    }
    .input_form.form_check {
        margin-bottom: 5px;
    }
}
@media only screen and (max-width:500px){
    .login_main {
        padding: 0 15px 30px;
    }
    .right_form h2 {
        font-size: 30px;
        line-height: 34px;
    }
    .right_form p {
        font-size: 13px;
        line-height: 19px;
    }
    .input_form {
        height: 46px;
        margin-bottom: 14px;
    }
    .input_form:before {
        top: 4px;
        left: 4px;
    }
    .input_form input, 
    .input_form select {
        font-size: 13px;
    }
    .iti--separate-dial-code .iti__selected-dial-code {
        margin-left: 5px;
    }
    .intl-tel-input, 
    .iti {
        font-size: 13px;
    }
    .input_form select {
        background-position: right 15px top 17px;
        background-size: 10px;
    }
    .input_form .iti__arrow {
        width: 10px;
        height: 10px;
    }
    .login_banner img {
        margin-bottom: 15px;
    }
    button.sbmt_btn {
        width: 150px;
        height: 45px;
        border-radius: 7px;
    }
    button.sbmt_btn span {
        font-size: 13px;
    }
    button.sbmt_btn span img {
        width: 20px;
    }
    button.sbmt_btn:before {
        width: 65px;
        height: 46px;
        right: 15px;
    }
}