.auth-layout {
    min-height: calc(100vh - 170px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 70px;
}

.auth-card {
    width: 100%;
    max-width: 460px;
    padding: 34px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(16, 24, 40, 0.07);
}

.auth-card-centered {
    text-align: center;
}

.auth-header {
    margin-bottom: 28px;
}

.auth-header h1,
.auth-card-centered h1 {
    margin: 0 0 10px;
    font-size: 28px;
}

.auth-header p,
.auth-description {
    margin: 0;
    color: var(--text-muted);
}

.auth-form {
    margin-top: 24px;
}

.btn-full {
    width: 100%;
}

.auth-help {
    margin: 18px 0 0;
    color: var(--text-muted);
    font-size: 13px;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin: 0 auto 18px;
    background: var(--success-background);
    border-radius: 50%;
    color: var(--success);
    font-size: 24px;
    font-weight: 700;
}

@media (max-width: 700px) {
    .auth-layout {
        padding-top: 30px;
    }

    .auth-card {
        padding: 24px;
    }
}