:root {
    --orange-triatale: #f28c28;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GLOBAL */
body {
    height: 100vh;
    background: radial-gradient(circle at top, #1b0f2b, #0b0612);
    font-family: Arial, sans-serif;
    color: white;
}

/* CONTAINER */
.auth-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CARTE */
.auth-card {
    width: 380px;
    padding: 35px;
    text-align: center;

    background: linear-gradient(180deg, #1e1233, #12081f);
    border-radius: 22px;

    border: 2px solid rgba(242,140,40,0.35);

    box-shadow:
        0 0 30px rgba(242,140,40,0.25),
        inset 0 0 25px rgba(255,255,255,0.03);
}

/* TITRE */
.auth-card h1 {
    font-family: 'Cinzel', serif;
    color: var(--orange-triatale);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

/* TEXTE */
.auth-card p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 25px;
}

/* INPUT */
.auth-card input {
    width: 100%;
    padding: 13px;
    margin-bottom: 14px;

    background: rgba(20,10,35,0.9);
    border: 2px solid rgba(242,140,40,0.35);
    border-radius: 10px;

    color: white;
    outline: none;
    font-size: 14px;
}

.auth-card input::placeholder {
    color: rgba(255,255,255,0.6);
}

.auth-card input:focus {
    border-color: var(--orange-triatale);
    box-shadow: 0 0 12px rgba(242,140,40,0.6);
}

/* BOUTON */
.auth-card button {
    width: 100%;
    padding: 14px;
    margin-top: 12px;

    background: var(--orange-triatale);
    color: #1b0f2b;

    border: none;
    border-radius: 12px;

    font-weight: bold;
    font-size: 15px;
    cursor: pointer;

    transition: 0.25s;
}

.auth-card button:hover {
    filter: brightness(1.15);
    box-shadow: 0 0 20px rgba(242,140,40,0.9);
}
