.auth-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at 8% 10%, rgba(183, 140, 92, 0.18), transparent 30%),
        radial-gradient(circle at 90% 88%, rgba(31, 79, 93, 0.16), transparent 35%),
        #ecf2f4;
}

.auth-card {
    width: min(560px, 100%);
    background: var(--surface);
    border-radius: var(--radius);
    padding: 26px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

label { display: block; margin: 10px 0 6px; font-weight: 600; }

input, textarea, select {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font: inherit;
    background: #fff;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #8db0bc;
    box-shadow: 0 0 0 3px rgba(141, 176, 188, 0.18);
}

button {
    width: 100%;
    border: 0;
    background: linear-gradient(130deg, var(--primary-strong), var(--primary));
    color: white;
    border-radius: 8px;
    padding: 11px 14px;
    margin-top: 14px;
    cursor: pointer;
    font-weight: 700;
}

button:hover {
    filter: brightness(1.05);
}

.inline-link { display: inline-block; margin-top: 12px; }
