* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: radial-gradient(ellipse at center, rgba(10, 5, 30, 0.88) 0%, rgba(0, 0, 0, 0.96) 100%);
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.maintenance-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.maintenance-box {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(138, 43, 226, 0.5);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 380px;
    width: 90%;
    box-shadow: 0 0 60px rgba(138, 43, 226, 0.3);
}

.maintenance-logo h1 {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 6px;
    color: #fff;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.8), 0 0 60px rgba(138, 43, 226, 0.4);
    margin-bottom: 8px;
}

.maintenance-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.maintenance-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.maintenance-form input {
    width: 100%;
    height: 38px;
    font-size: 13px;
    text-align: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 19px;
    outline: none;
    transition: all 0.3s ease;
}

.maintenance-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.maintenance-form input:focus {
    border-color: rgba(138, 43, 226, 0.7);
    background: rgba(255, 255, 255, 0.1);
}

#maintenanceLoginBtn {
    width: 100%;
    height: 38px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #fff;
    background: linear-gradient(135deg, #8a2be2, #6a1bb0);
    border: none;
    border-radius: 19px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

#maintenanceLoginBtn:hover {
    background: linear-gradient(135deg, #9b3df0, #7b2dc0);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

#maintenanceError {
    font-size: 12px;
    color: #ff5555;
    min-height: 16px;
    margin-top: 4px;
}

.maintenance-info {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 20px;
    letter-spacing: 1px;
}