* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('./login-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.maintenance-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon-container {
    margin-bottom: 32px;
}

.maintenance-icon {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maintenance-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

h1 {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 32px;
    opacity: 0.8;
}

.message {
    margin-bottom: 32px;
    line-height: 1.6;
}

.message p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 12px;
}

.message strong {
    color: #2d3748;
    font-weight: 600;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(72, 187, 120, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(72, 187, 120, 0.2);
}

.pulse {
    width: 12px;
    height: 12px;
    background: #48bb78;
    border-radius: 50%;
    animation: statusPulse 1.5s infinite;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.status-indicator span {
    font-size: 14px;
    color: #2f855a;
    font-weight: 500;
}

.estimated-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    padding: 12px;
    background: rgba(66, 153, 225, 0.1);
    border-radius: 8px;
}

.time-icon {
    font-size: 18px;
}

.estimated-time span {
    font-size: 14px;
    color: #2b6cb0;
    font-weight: 500;
}

.contact-info {
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-info p {
    font-size: 14px;
    color: #718096;
    line-height: 1.5;
}

.footer {
    text-align: center;
    margin-top: 24px;
}

.footer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 480px) {
    .maintenance-card {
        padding: 32px 24px;
        margin: 16px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    .maintenance-icon img {
        width: 64px;
        height: 64px;
    }
}
