/* =========================
   AUTH BASE
========================= */

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at top, #1e293b, #0f172a 65%);
}

.auth-box {
    width: 100%;
    max-width: 420px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(99, 102, 241, 0.35);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
}

/* =========================
   HEADER
========================= */

.auth-logo-link {
    text-decoration: none;
    display: block;
    margin-bottom: 24px;
}

.auth-logo-link:hover {
    opacity: 0.9;
}


.auth-header {
    text-align: center;
    margin-bottom: 28px;
}

.auth-icon {
    font-size: 28px;
    display: inline-block;
    margin-bottom: 8px;
}

.auth-header h1 {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-header p {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 4px;
}

/* =========================
   FORM
========================= */

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

.auth-group label {
    font-size: 13px;
    font-weight: 600;
    color: #c7d2fe;
}

.auth-group input {
    margin-top: 6px;
    width: 100%;
    padding: 11px 14px;
    border-radius: 12px;
    background: rgba(30, 41, 59, 0.85);
    border: 1px solid rgba(99, 102, 241, 0.35);
    color: #e5e7eb;
    outline: none;
    transition: 0.2s;
}

.auth-group input:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 2px rgba(129, 140, 248, 0.4);
}

/* =========================
   ERRORS & STATUS
========================= */

.auth-error {
    font-size: 12px;
    color: #fca5a5;
    margin-top: 6px;
}

.auth-status {
    font-size: 13px;
    color: #86efac;
    margin-bottom: 16px;
}

/* =========================
   REMEMBER
========================= */

.auth-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #94a3b8;
}

.auth-remember input {
    accent-color: #818cf8;
}

/* =========================
   ACTIONS
========================= */

.auth-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.auth-link {
    font-size: 13px;
    color: #a5b4fc;
    text-decoration: none;
}

.auth-link:hover {
    color: #c7d2fe;
}

.auth-btn {
    padding: 10px 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.auth-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
