.auth-page-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-height, 64px));
    padding: 2rem 1rem;
    box-sizing: border-box;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.auth-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 480px;
    width: 100%;
    text-align: center;
}

.auth-card h1 {
    margin: 0 0 0.75rem;
    font-size: 1.75rem;
    color: #1a1a1a;
}

.auth-description {
    color: #555;
    margin: 0 0 1.5rem;
    line-height: 1.6;
}

.auth-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.auth-steps li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #333;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #0088cc;
    color: white;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}

.auth-steps p {
    margin: 0;
    line-height: 1.5;
}

.auth-steps code {
    background: #eef3f8;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
    color: #006699;
}

.bot-link {
    color: #0088cc;
    text-decoration: none;
    font-weight: 500;
}

.bot-link:hover {
    text-decoration: underline;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0088cc;
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #006fa3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

.btn:active {
    transform: translateY(0);
}

.btn-icon {
    flex-shrink: 0;
}

.btn-primary {
    background: #0088cc;
}

.btn-primary:hover {
    background: #006fa3;
}

.auth-notice {
    font-size: 0.9rem;
    color: #666;
    margin: 1.5rem 0 0.5rem;
    line-height: 1.5;
}

.auth-notice strong {
    color: #d32f2f;
    font-weight: 600;
}

.auth-help {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

.auth-help a {
    color: #0088cc;
    text-decoration: none;
    font-weight: 500;
}

.auth-help a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 2rem 1.5rem;
    }

    .auth-card h1 {
        font-size: 1.5rem;
    }

    .auth-steps li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .step-number {
        margin-top: 0;
    }
}