/* =========================================================
   auth.css
========================================================= */

:root{
    --azul:#2563eb;
    --azul-hover:#1d4ed8;
    --negro:#111827;
}

body{
    background:#f3f4f6;
    font-family:Arial, Helvetica, sans-serif;
}

/* =========================
    BACKGROUND
========================= */

.auth-bg{
    min-height:100vh;

    background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?q=80&w=1600&auto=format&fit=crop');

    background-size:cover;
    background-position:center;
}

/* =========================
    BOX
========================= */

.auth-box{
    width:100%;
    max-width:450px;

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.auth-box h2{
    font-weight:bold;
    color:var(--azul);
    margin-bottom:25px;
}

/* =========================
    FORM
========================= */

.form-control{
    height:52px;
    border-radius:12px;
    border:1px solid #d1d5db;
}

.form-control:focus{
    box-shadow:none;
    border-color:var(--azul);
}

/* =========================
    BUTTON
========================= */

.btn-auth{
    width:100%;

    background:var(--azul);

    color:white;

    border:none;

    height:52px;

    border-radius:12px;

    font-weight:bold;

    transition:0.3s;
}

.btn-auth:hover{
    background:var(--azul-hover);
}

/* =========================
    LINKS
========================= */

.auth-box a{
    color:var(--azul);
    text-decoration:none;
    font-weight:bold;
}

.auth-box a:hover{
    color:var(--azul-hover);
}