/* Real-time Password Validation Styles */
.password-requirements {
    margin-top: 8px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.req-item {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    font-size: 13px;
    transition: color 0.3s ease;
}

.req-item:last-child {
    margin-bottom: 0;
}

.req-item::before {
    content: "✗";
    margin-right: 8px;
    font-weight: bold;
    color: #dc3545;
    transition: color 0.3s ease;
}

.req-item.req-satisfied {
    color: #28a745;
}

.req-item.req-satisfied::before {
    content: "✓";
    color: #28a745;
}

.password-strength {
    margin-top: 5px;
    font-size: 12px;
    font-weight: bold;
}

.strength-weak { color: #dc3545; }
.strength-medium { color: #ffc107; }
.strength-strong { color: #28a745; }