.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100dvh;
}

.login-form {
    border-radius: 10px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 350px;
    @media (max-width: 768px) {
        max-width: 295px;
        padding: 0;
    }
}

.login-form input:not([type="checkbox"]):not([type="radio"]) {
    padding: 0.75rem;
    border-radius: 5px;
    font-size: 1rem;
}

.login-title-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin-bottom: 10px;
    gap: 8px;
}

.login-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: #fa5418;
    letter-spacing: 0.1rem;
}

.login-sub-title {
    text-align: center;
    color: #666;
}
.forget{
    display: flex;
    gap: .5rem;
}
.forget p,
.forget a{
    font-size: 16px;
}