
/* =========================
   GLOBAL AUTH LAYOUT
========================= */

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: #0f1115;
    color: #fff;
}

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

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

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

.auth-card {
    width: 420px;
    background: #171a21;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

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

.auth-header h1 {
    margin: 0;
    font-size: 22px;
}

.auth-header p {
    opacity: 0.6;
    font-size: 13px;
}

/* =========================
   INPUTS
========================= */

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

input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #2a2f3a;
    background: #0f1115;
    color: white;
}

/* =========================
   BUTTONS
========================= */

button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.btn-primary {
    background: #4f7cff;
    color: white;
}

.btn-primary:hover {
    background: #3f6df0;
}

.btn-secondary {
    background: #2a2f3a;
    color: white;
}

.btn-secondary:hover {
    background: #3a4150;
}

/* =========================
   DIVIDER
========================= */

hr {
    border: none;
    border-top: 1px solid #2a2f3a;
    margin: 20px 0;
}