.auth-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(79, 70, 229, 0.22), transparent 34%),
        radial-gradient(circle at bottom right, rgba(6, 182, 212, 0.24), transparent 36%),
        linear-gradient(135deg, #eef2ff, #f8fafc);
}

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

.auth-card {
    width: 100%;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.auth-logo {
    text-align: center;
    margin-bottom: 26px;
}

.logo-mark {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 34px;
    margin-bottom: 14px;
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.35);
}

.auth-logo h1 {
    margin: 0;
    font-size: 30px;
}

.auth-logo p {
    margin: 8px 0 0;
    color: var(--muted);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 14px;
    font-weight: 700;
}

.auth-form input {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 15px;
    font-size: 15px;
    outline: none;
    background: #ffffff;
}

.auth-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.auth-form button {
    border: none;
    border-radius: 16px;
    padding: 15px;
    font-size: 16px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 16px 34px rgba(79, 70, 229, 0.28);
}

.auth-form button:hover {
    filter: brightness(1.05);
}

.auth-bottom {
    text-align: center;
    margin-top: 22px;
    color: var(--muted);
    font-size: 14px;
}

.auth-bottom a {
    font-weight: 900;
}