/* Password Strength Styles */
.password-validation-wrapper {
    display: block;
    width: 100%;
    clear: both;
}

.password-strength-indicator {
    margin-top: 0;
}

.password-strength-indicator .progress {
    height: 4px;
    border-radius: 0;
    background-color: transparent;
    overflow: visible;
    margin: 0;
}

.password-strength-indicator .progress-bar {
    transition: width 0.3s ease, background-color 0.3s ease;
    border-radius: 0;
}

/* Style for password indicators */
.bg-danger {
    background-color: #dc3545 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

.bg-success {
    background-color: #28a745 !important;
}

/* Password requirements styling */
.requirements-list {
    margin-top: 8px;
    padding-left: 5px;
}

.requirement-item {
    font-size: 12px;
    margin-bottom: 3px;
}

.requirement-item i {
    font-size: 14px;
    vertical-align: middle;
}

.requirement-item.text-success i {
    color: #28a745;
}

/* Responsive styles for tablet/iPad */
@media (min-width: 768px) and (max-width: 1024px) {
    .password-validation-wrapper {
        margin-top: 10px;
    }

    .password-requirements {
        max-width: 100%;
    }
}

/* Specific iPad styles */
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px) {
    .password-validation-wrapper {
        margin-top: 10px;
        position: relative;
        z-index: 1;
    }
}
