.maintenance-page.login {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 40px 16px;
}

.maintenance-page.login::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(0, 98, 244, 0.35) 0%, transparent 50%);
    pointer-events: none;
}

.maintenance-page .container {
    position: relative;
    z-index: 1;
}

.maintenance-page .box.maintenance-box {
    max-width: 560px;
    padding: 55px 48px 48px;
    margin-bottom: 0;
    box-shadow: 0 24px 60px rgba(0, 44, 120, 0.18);
}

@media (max-width: 575px) {
    .maintenance-page .box.maintenance-box {
        padding: 40px 24px 32px;
        border-radius: 24px;
    }
}

.maintenance-page .img-cont {
    text-align: center;
    margin-bottom: 28px;
}

.maintenance-page .img-cont img {
    max-width: 200px;
}

.maintenance-page .text-cont {
    text-align: center;
    margin-bottom: 28px;
}

.maintenance-page .text-cont span {
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0062f4;
    display: block;
    margin-bottom: 12px;
}

.maintenance-page .text-cont h2 {
    font-weight: 700;
    font-size: 34px;
    line-height: 1.1;
    color: #111;
    margin: 0;
}

@media (max-width: 767px) {
    .maintenance-page .text-cont h2 {
        font-size: 26px;
    }
}

.maintenance-page .maintenance-subtext {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
    color: #828282;
    text-align: center;
    margin: 0;
}

.maintenance-notice {
    position: relative;
    background: linear-gradient(135deg, #f3f8ff 0%, #e8f2ff 100%);
    border: 1px solid rgba(0, 98, 244, 0.18);
    border-left: 4px solid #0062f4;
    border-radius: 14px;
    padding: 20px 44px 20px 20px;
    text-align: left;
}

.maintenance-notice-badge {
    display: inline-block;
    background: #2b74f6;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.maintenance-notice-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    color: #025ace;
    margin-bottom: 8px;
}

.maintenance-notice-message {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.65;
    color: #303030;
    margin: 0;
}

.maintenance-dismiss {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(0, 98, 244, 0.15);
    border-radius: 50%;
    color: #025ace;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s ease;
}

.maintenance-dismiss:hover {
    background: #0062f4;
    border-color: #0062f4;
    color: #fff;
}

.maintenance-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #ececec;
}

.maintenance-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2b74f6;
    box-shadow: 0 0 0 0 rgba(43, 116, 246, 0.45);
    animation: maintenance-pulse 1.8s infinite;
}

@keyframes maintenance-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(43, 116, 246, 0.45);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(43, 116, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(43, 116, 246, 0);
    }
}

.maintenance-status span {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #828282;
}
