/* AdminEase Maintenance Mode */
.adminease-mm-page {
    margin: 0 !important;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background: linear-gradient(135deg, var(--primary-color, #667eea) 0%, var(--secondary-color, #764ba2) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adminease-mm {
    width: 100%;
    max-width: 400px;
    margin: 20px;
}

/* Classic Theme Styles */
.adminease-mm.classic-theme .login-container {
    position: relative;
    width: 100%;
}

.adminease-mm.classic-theme .login-card {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 40px;
    text-align: center;
    position: relative;
}

.adminease-mm.classic-theme .login-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #7d50f9) 0%, var(--secondary-color, #845af9) 100%);
}

.adminease-mm.classic-theme .logo {
    width: auto;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.adminease-mm.classic-theme .site-title {
    margin: 0 0 15px;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color, #222222);
    letter-spacing: -0.5px;
}

.adminease-mm.classic-theme .welcome-message {
    color: var(--text-color, #222222);
    font-size: 16px;
    line-height: 1.5;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .adminease-mm {
        margin: 10px;
    }

    .adminease-mm.classic-theme .login-card {
        padding: 30px 20px;
    }

    .adminease-mm.classic-theme .site-title {
        font-size: 24px;
    }

    .adminease-mm.classic-theme .welcome-message {
        font-size: 14px;
    }
}