body.login-page {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: #10263c;
    background:
        linear-gradient(135deg, rgba(7, 30, 51, 0.82), rgba(5, 15, 27, 0.72)),
        url("../../img/login/pavement.jpg") no-repeat center center fixed;
    background-size: cover;
}

.login-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 430px;
    padding: 34px 30px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(16, 38, 60, 0.08);
    box-shadow: 0 24px 60px rgba(8, 18, 30, 0.28);
    backdrop-filter: blur(8px);
}

.login-banner {
    display: none;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.14);
    border: 1px solid rgba(255, 214, 102, 0.32);
    color: #9d6a00;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.login-banner.is-visible {
    display: inline-flex;
}

.login-logo {
    width: 180px;
    max-width: 100%;
    display: block;
    margin: 0 auto 18px;
}

.login-visual {
    width: 100%;
    height: 138px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(16, 38, 60, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.login-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.login-copy {
    text-align: center;
    margin-bottom: 22px;
}

.login-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #0f5f94;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.login-copy h1 {
    margin: 0 0 10px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 42px;
    line-height: 0.96;
    text-transform: uppercase;
    color: #0f2236;
}

.login-copy p {
    margin: 0;
    color: #5b6b7b;
    font-size: 15px;
    line-height: 1.6;
}

.login-alert {
    display: none;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    padding: 14px 16px;
    border-radius: 16px;
}

.login-alert.is-visible {
    display: flex;
}

.login-alert-error {
    background: #fff0f0;
    border: 1px solid rgba(185, 52, 52, 0.14);
    color: #812d2d;
}

.login-alert-info {
    background: #eef7ff;
    border: 1px solid rgba(31, 108, 165, 0.14);
    color: #22567f;
}

.login-alert-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex: 0 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
}

.login-alert-error .login-alert-icon {
    background: rgba(185, 52, 52, 0.14);
}

.login-alert-info .login-alert-icon {
    background: rgba(31, 108, 165, 0.14);
}

.login-alert-content strong {
    display: none;
}

.login-alert-content p {
    margin: 0;
    color: inherit;
    font-size: 14px;
    line-height: 1.55;
}

.login-return-hint {
    margin-bottom: 18px;
    padding: 13px 15px;
    border-radius: 14px;
    background: #f6f8fb;
    border: 1px solid rgba(16, 38, 60, 0.07);
    color: #4d6072;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.login-google-button {
    width: 100%;
    min-height: 62px;
    border: none;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #d64a33, #f26b4f);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 18px 34px rgba(214, 74, 51, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.login-google-button:hover,
.login-google-button:focus {
    transform: translateY(-1px);
    box-shadow: 0 22px 38px rgba(214, 74, 51, 0.3);
    outline: none;
}

.login-google-button[disabled] {
    cursor: wait;
    opacity: 0.92;
}

.login-google-button.is-loading .login-google-button-icon {
    animation: login-spin 0.9s linear infinite;
}

.login-google-button-icon {
    font-size: 22px;
}

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

.login-secondary-link {
    color: #1b5f91;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.login-secondary-link:hover,
.login-secondary-link:focus {
    color: #103e61;
    text-decoration: none;
}

@keyframes login-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 640px) {
    .login-shell {
        padding: 14px;
    }

    .login-card {
        padding: 28px 20px 22px;
    }

    .login-copy h1 {
        font-size: 36px;
    }
}
