/* Password Reset Specific Styles */
.auth-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 122, 141, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--accent);
    font-size: 1.8rem;
}

.form-message {
    padding: 15px;
    border-radius: 6px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeIn 0.3s ease-out;
}

.form-message i {
    font-size: 1.3rem;
}

.form-message.success {
    background: rgba(0, 168, 107, 0.1);
    color: #00a86b;
}

.form-message.error {
    background: rgba(255, 77, 79, 0.1);
    color: #ff4d4f;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Password Strength Meter */
.password-strength {
    margin-top: 10px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.strength-meter {
    height: 100%;
    width: 0;
    transition: width 0.3s ease;
}

.strength-weak {
    background: #ff4d4f;
}

.strength-medium {
    background: #faad14;
}

.strength-strong {
    background: #00a86b;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .auth-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}