.password-section {
    margin-bottom: 5px;
    position: relative;
}
.password-toggle {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 38px;
    color: #6c757d;
}
.password-rules {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 15px;
    margin-top: 5px;
    font-size: 0.9rem;
}
.password-rule {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}
.password-rule i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}
.password-rule.valid {
    color: #198754;
}
.password-rule.invalid {
    color: #6c757d;
}
.password-strength {
    height: 5px;
    border-radius: 5px;
    margin-top: 10px;
    background-color: #e9ecef;
    overflow: hidden;
}
.password-strength-bar {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background-color 0.3s ease;
}
.password-feedback {
    font-size: 0.8rem;
    margin-top: 5px;
}