#newPassword,
#confirmPassword {
    letter-spacing: normal;
    text-align: left;
    font-size: 14px;
}

.password-requirements {
    background: #fff3cd;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #856404;
}

.password-requirements ul {
    margin-left: 20px;
    margin-top: 8px;
}

.password-requirements li {
    margin-bottom: 4px;
    list-style: none;
}

.password-requirements li .req-icon {
    margin-left: 8px;
    font-size: 12px;
    font-weight: bold;
}

.password-requirements li.valid {
    color: #28a745;
}

.password-requirements li.valid .req-icon {
    color: #28a745;
}

.password-requirements li.invalid {
    color: #dc3545;
}

.password-requirements li.invalid .req-icon {
    color: #dc3545;
}

.password-strength {
    margin-top: 12px;
    margin-bottom: 15px;
}

.strength-bar {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-fill {
    height: 100%;
    width: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-fill.weak {
    width: 33%;
    background: #f44336;
}

.strength-fill.medium {
    width: 66%;
    background: #ff9800;
}

.strength-fill.strong {
    width: 100%;
    background: #4caf50;
}

.password-strength small {
    font-size: 12px;
    color: #666;
}
