.input-box {
    position: relative;
    flex-grow: 1;
}
.input-box i{
    position: absolute;
    right: 10px;
    background-color: white;
    top: 2px;
    font-size: 20px;
    padding: 6px;
}
.login .input-box p {
font-size: 12px;
font-weight: 600;
line-height: 14.4px;
text-align: right;
cursor: pointer;
margin-top: 5px;

}
input {
    padding: 6px 20px;
    border: 1px solid var(--main-color);
    border-radius: 11px;
    width: 100%;
    
}
.dropdown-btn {
    padding: 6px 20px;
    background-color: white;
    border-radius: 11px;
    border: 1px solid var(--main-color);
}
.form-btn {
    background-color: var(--main-color);
    padding: 10px 20px;
    border-radius: 11px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    flex-grow: 1;

}

.form-line {
    width: 100%;
    height: 1px;
    position: relative;
    background-color: #D1D1D1;
}
.form-line::before {
    content: "or";
    width: 25px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: white;
    position: absolute;
    z-index: 3;
    left: 50%;
    transform: translateX(-50%);
    top: -12px;
    color: #D1D1D1;
font-size: 14px;
font-weight: 400;
}
.login .form-btn {
    width: 49%;
    flex-grow: 0;
}
.login-with button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #E54936;
    color: white;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;

}

.modal.fade .modal-dialog {
    max-width: 700px !important;
}

label {
font-size: 14px;
font-weight: 500;
line-height: 16.8px;
text-align: left;
margin-bottom: 10px;
}

.verification-code-box input {
    width: 19%;
    text-align: center;
    max-width: 85px;
    height: 60px;
    padding: 0;
    line-height: 60px;
    border-radius: 8px;
    border-color: var(--main-color);
}

.timer {
font-size: 12px;
font-weight: 300;
line-height: 14.4px;
text-align: center;

}
.timer span {
    color: #00AB1D;
}

.forget-pass-page .modal-body {
    padding: 0 !important;
}




@media (max-width: 768px) {
    .side-background {
        display: none;
    }

    .form-container {
        width: 90%;
        min-width: auto;
        padding: 20px;
    }

    .form-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .login .form-btn {
        width: 48%;
    }

    .dropdown-btn {
        padding: 6px 12px;
    }

    input {
        padding: 6px 12px;
        font-size: 14px;
    }

    .input-box i {
        font-size: 18px;
        top: 6px;
    }

    .header-logo img {
        max-height: 180px;
    }

    .login-with {
        flex-direction: column;
        gap: 10px;
    }

    .login-with button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
@media (max-width: 480px) {
    .form-container {
        width: 95%;
        padding: 15px;
    }

    .d-flex.gap-2 {
        flex-direction: column;
    }

    .login .form-btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .dropdown-btn,
    .input-box input {
        width: 100%;
    }

    .form-btn + .form-btn {
        margin-left: 0;
    }

    .form-line::before {
        font-size: 12px;
    }

    .login-with {
        flex-direction: row;
        justify-content: center;
    }
}
html[dir="rtl"] .input-box i {
    right: auto;
    left: 10px;
}
input,
button,
.dropdown-btn {
    transition: all 0.3s ease-in-out;
}
input:focus,
button:hover,
.dropdown-btn:hover {
    box-shadow: 0 0 0 2px rgba(0, 171, 29, 0.2);
}