.auth-required-detail-page {
    min-height: 100vh;
    margin: 0;
    background: #ffffff;
    color: #1f2933;
    font-family: Arial, sans-serif;
}

.auth-required-detail {
    display: flex;
    min-height: calc(100vh - 64px);
    box-sizing: border-box;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 20px 64px;
}

.auth-required-detail__card {
    width: min(100%, 430px);
    box-sizing: border-box;
    padding: 32px 42px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    text-align: center;
}

.auth-required-detail__brand-mark {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto 14px;
    object-fit: contain;
}

.auth-required-detail__eyebrow {
    margin: 0 0 8px;
    color: #006edb;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.auth-required-detail__card h1 {
    margin: 0;
    color: #003660;
    font-family: Arial, sans-serif;
    font-size: 25px;
    line-height: 1.2;
}

.auth-required-detail__message {
    margin: 14px 0 20px;
    color: #52606d;
    font-size: 16px;
    line-height: 1.55;
}

.auth-required-detail__auth-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 10px 22px;
    border-radius: 999px;
    background: #007bdb;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.auth-required-detail__auth-button:hover,
.auth-required-detail__auth-button:focus-visible {
    background: #005d9c;
    color: #ffffff;
    outline: none;
}

@media (max-width: 480px) {
    .auth-required-detail {
        min-height: calc(100vh - 58px);
        padding: 20px 16px 40px;
    }

    .auth-required-detail__card {
        padding: 28px 24px;
        border-radius: 16px;
    }

    .auth-required-detail__card h1 {
        font-size: 22px;
    }
}
