/* Add to auth-forms.css */

/* Message styles */
#mm-message {
    padding: 12px 15px;
    margin: 15px 0;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Loading overlay */
.mm-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.mm-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: mm-spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes mm-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* OTP timer */
.mm-otp-timer {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    text-align: center;
}

.mm-otp-timer span {
    font-weight: bold;
    color: #e74c3c;
}

/* OTP input */
.mm-otp-input {
    text-align: center;
    font-size: 24px;
    letter-spacing: 10px;
    font-weight: bold;
}

/* Button states */
.mm-btn-primary:disabled,
.mm-btn-success:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Dashboard */
.mm-dashboard-header {
    text-align: center;
    margin-bottom: 30px;
}

.mm-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mm-badge-free {
    background: #e8f5e9;
    color: #2e7d32;
}

.mm-badge-pro {
    background: #e3f2fd;
    color: #1565c0;
}

/* Usage stats */
.mm-usage-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.mm-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.mm-stat-value {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
    color: #fff;
}

.mm-stat-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.mm-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}