/* =========================================================
   WORKBASE AUTH DESIGN
   Datei: auth/assets/auth.css
   ---------------------------------------------------------
   Definiert:
   - Login / Register Layout
   - Formular Styling
   - Zentrierung
   Nutzt Customer Color System
========================================================= */


/* =========================================================
   AUTH WRAPPER
========================================================= */

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--customer-bg);
    padding: 20px;
}


/* =========================================================
   AUTH CARD
========================================================= */

.auth-card {
    width: 100%;
    max-width: 420px;
}

.auth-card h1 {
    text-align: center;
    margin-bottom: 25px;
}


/* =========================================================
   AUTH FORM INPUTS
========================================================= */

.auth-form input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid var(--customer-border);
    margin-bottom: 15px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.auth-form input:focus {
    border-color: var(--customer-accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(243,112,33,0.15);
}


/* =========================================================
   AUTH BUTTON (nutzt customer-btn)
========================================================= */

.auth-form .customer-btn {
    width: 100%;
    text-align: center;
}


/* =========================================================
   AUTH LINKS
========================================================= */

.auth-links {
    margin-top: 15px;
    text-align: center;
}

.auth-links a {
    font-size: 14px;
    color: var(--customer-accent);
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}