body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(255, 227, 233, 0.9), transparent 24%),
        linear-gradient(180deg, #f4efe8 0%, #fbf8f4 100%);
    color: #1f2933;
    font-family: "Outfit", Arial, sans-serif;
}

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

.auth-card {
    width: 100%;
    max-width: 520px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(234, 223, 216, 0.95);
    border-radius: 28px;
    box-shadow: 0 20px 48px rgba(20, 27, 37, 0.08);
    overflow: hidden;
}

.auth-card__hero {
    padding: 28px 28px 18px;
    background: radial-gradient(circle at top left, #ffe6ed 0%, #fff7f9 45%, #ffffff 100%);
}

.auth-chip {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff1f4;
    color: #f20544;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.auth-title {
    margin: 14px 0 8px;
    font-size: 2rem;
    line-height: 1.08;
    color: #111827;
}

.auth-subtitle {
    margin: 0;
    color: #667085;
    line-height: 1.7;
}

.auth-card__body {
    padding: 28px;
}

.auth-stack > * + * {
    margin-top: 16px;
}

.auth-form .form-group,
.auth-form .mb-3 {
    margin-bottom: 16px;
}

.auth-form .form-control,
.auth-form input,
.auth-form select,
.auth-form textarea {
    width: 100%;
    border: 1px solid #eadfd8;
    border-radius: 16px;
    padding: 14px 16px;
    box-sizing: border-box;
    font: inherit;
    background: rgba(255, 255, 255, 0.98);
}

.auth-form .form-control:focus,
.auth-form input:focus,
.auth-form select:focus,
.auth-form textarea:focus {
    outline: none;
    border-color: rgba(242, 5, 68, 0.45);
    box-shadow: 0 0 0 4px rgba(242, 5, 68, 0.1);
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.auth-actions {
    margin-top: 24px;
}

.auth-button,
.auth-form .btn,
.auth-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #f20544 0%, #ff6f97 100%);
    color: #fff;
    font: inherit;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(242, 5, 68, 0.2);
    cursor: pointer;
}

.auth-note,
.auth-helper {
    color: #667085;
    font-size: 0.95rem;
    line-height: 1.7;
}

.auth-link {
    color: #f20544;
    font-weight: 600;
    text-decoration: none;
}

.auth-logo {
    display: block;
    max-width: 220px;
    width: 100%;
    height: auto;
}

.auth-centered {
    text-align: center;
}

.auth-alert {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid #ffd4dd;
    background: #fff5f7;
    color: #be123c;
}
