.recover-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.4;
}

.recover-form .recover-field-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.recover-form label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-main);
}

.recover-form input[type="email"],
.recover-form input[type="password"] {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--input-bg, var(--bg-main));
    color: var(--text-main);
    border: 1px solid var(--border-color, #cbd5e1);
    border-radius: var(--input-radius, 8px);
    box-sizing: border-box;
    font-size: 0.95rem;
}

.recover-submit-btn {

}

.recover-submit-btn:hover {

}

.recover-error-alert {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-align: center;
}

/* Inherited Strength Meter Element Layout Classes matching profile.php */
.strength-meter {
    height: 6px;
    background-color: var(--border-color, #e2e8f0);
    border-radius: 3px;
    margin-top: 8px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.strength-weak { width: 25%; background-color: #ef4444; }
.strength-medium { width: 60%; background-color: #f59e0b; }
.strength-strong { width: 100%; background-color: #10b981; }

.strength-text {
    font-size: 0.8rem;
    margin-top: 5px;
    color: var(--text-muted);
}
.text-weak { color: #ef4444; }
.text-medium { color: #f59e0b; }
.text-strong { color: #10b981; }