/* MSS Course Delivery Plugin Styles */
/* Inherits theme variables from the main theme */
/* This file only adds plugin-specific overrides */

/* Ensure plugin pages use theme variables */
.checkout-page .form-group input:focus,
.auth-card .form-group input:focus {
    outline: none;
}

/* Password strength indicator */
.password-strength {
    height: 3px;
    border-radius: 2px;
    margin-top: 4px;
    transition: all 0.3s ease;
}

.password-strength.weak {
    width: 33%;
    background: #DC2626;
}

.password-strength.medium {
    width: 66%;
    background: #D97706;
}

.password-strength.strong {
    width: 100%;
    background: #059669;
}
