.login-container-reset-password {
    position: relative;
    background: var(--color-secondary);
    border: 1px solid var(--color-primary);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px var(--color-btn-shadow);
    width: 100%;
    max-width: 450px;
    height: 90vh;
    text-align: center;
    transform: scaleX(1.1);
    animation: fadeIn 0.6s ease-out;
}

.login-logo img {
    max-width: 140px;
    height: auto;
    display: block;
    margin: auto auto 60px;

}

.login-logo-reset-password {
    max-width: 140px;
    height: auto;
    display: block;
    margin: auto auto 20px;

}

.login-container-reset-password h3 {
    margin-top: 20px;
    margin-bottom: 30px;
    font-weight: 10;
    color: var(--color-tertiary);
    font-size: 1.5rem;
}

.login-container-reset-password label {
    display: block;
    text-align: left;
    margin-top: 0.5rem;
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--color-grey);
    font-size: 0.95rem;
}

.login-container-reset-password input,
.login-container-reset-password textarea {
    width: 100%;
    padding: 14px 16px;
    margin: 0 auto 20px auto;
    display: block;
    border: 1px solid var(--color-primary);
    border-radius: 12px;
    font-size: 0.8rem;
    transition: border 0.3s, box-shadow 0.3s;
}

.login-container-reset-password input:focus,
.login-container-reset-password textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px var(--color-btn-shadow);
    outline: none;
}

.btn-login-reset-password {
    width: 100%;
    padding: 14px;
    background: var(--color-btn-gradient);
    color: var(--color-white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 10px;
    margin-bottom: 20px;
}

.btn-login-reset-password:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--color-btn-shadow);
}

.forgot-password {
    color: var(--color-white);
}

.forgot-password a {
    font-size: 1rem;
    color: var(--color-primary);
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.forgot-password a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.forgot-password a:hover {
    color: var(--color-white);
}

.forgot-password a:hover::after {
    color: var(--color-white);
}

.forgot-password a:hover::after {
    width: 100%;
}






