.login-form-wrapper {
    background: url(../images/login-form-3.png);
    background-repeat: no-repeat;
    padding: 195px 0;
    background-size: contain;
    background-position: bottom;
}

.login-title-box span {
    display: block;
    padding: 20px 0;
    font-family: 'roboto-reguler';
    text-align: center;
    color: var(--title-color);
}


.input-box input {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(51, 51, 51, 0.40);
    background: var(--base-white, #FFF);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    margin-bottom: 20px;
    padding-right: 45px;
}

.input-box label {
    font-family: "roboto-medium";
    margin-bottom: 8px;
}

.login-form-content {
    padding-top: 30px;
    height: 548px;
}

.login-check-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.login-accound p {
    padding-top: 50px;
    text-align: center;
}

.login-accound p a {
    color: #E5007D;
    font-size: 18px;
}



.submit-btn {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    /* position: fixed; */
    top: 44%;
    right: 0;
}



.forgot-pass a {
    font-size: 18px;
    color: #009EE3;
}



.subscribe-checkbox {
    display: flex;
    align-items: center;
}

.subscribe-checkbox label {
    font-size: 18px;
    color: #000;
    letter-spacing: 0.15px;
    font-family: 'roboto-medium';
    cursor: pointer;
    margin-top: 4px;
}

.subscribe-checkbox input[type=checkbox] {
    position: relative;
    border: 2px solid rgba(51, 51, 51, 0.40);
    border-radius: 6px;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 0 .6em 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    /* opacity: .5; */

}

.subscribe-checkbox input[type=checkbox]:before {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    width: 4px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

.subscribe-checkbox input[type=checkbox]:checked {
    background-color: #009EE3;
    border-color: #009EE3;
    opacity: 1;
}

.copy-right-main {
    margin-top: 0;
}

.input-box {
    position: relative;
}
.input-box img{
    position: absolute;
    right: 20px;
    top: 52px;
}

.login-btn ul{
    display: flex;
    align-items: center;
    gap: 20px;
}


@media (max-width: 1365px) {
    .subscribe-checkbox label {
        font-size: 16px;
    }

    .forgot-pass a {
        font-size: 16px;
    }
}

@media (max-width: 1199px) {
    .login-check-box {
        flex-direction: column;
        gap: 20px;
    }
}


@media (max-width: 991px){
    .login-form-wrapper{
        background-size: contain;
        padding: 160px 0;
    }
    .login-accound p a{
        font-size: 16px;
    }
    
    .login-form-content {
        height: 500px;
    }
}


@media (max-width: 767px) {
    .submit-btn {
        margin-top: 30px;
    }

    .login-form-wrapper {
        padding: 120px 0;
    }

    .login-form-content {
        padding-top: 10px;
        height: 450px;
    }

    .login-check-box {
        gap: 10px;
    }

    .login-accound p {
        padding-top: 20px;
        text-align: center;
    }
    .login-form-wrapper{
        background-size: contain;
    }
    .submit-btn li button{
        padding: 8px 10px;
    }
    .login-title-box span{
        padding: 10px 0;
        font-size: 14px;
    }
    .login-accound p a{
        font-size: 14px;
    }
    .subscribe-checkbox label {
        font-size: 14px;
    }

    .forgot-pass a {
        font-size: 14px;
    }
}