/* =======================================================
   FLAMMEN'TRUCH WEB
   V0.10
======================================================= */

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

html,body{
    width:100%;
    height:100%;
}

body{

    font-family:Inter,sans-serif;

    background:#111;

    color:#FFF;

    overflow-x:hidden;

}


/* =======================================================
                    HERO
======================================================= */

.hero{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;

}


.hero-image{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

}


.hero-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            rgba(0,0,0,.55),
            rgba(0,0,0,.72)
        );

}


.hero-content{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    z-index:10;

    padding:40px;

}


.hero-badge{

    background:#8b1d2d;

    color:#FFF;

    padding:10px 22px;

    border-radius:50px;

    letter-spacing:1px;

    margin-bottom:25px;

    font-size:15px;

    text-transform:uppercase;

}


.hero h1{

    font-family:"Cormorant Garamond",serif;

    font-size:84px;

    font-weight:700;

    margin-bottom:10px;

    text-shadow:0 8px 25px rgba(0,0,0,.55);

}


.hero h2{

    font-size:38px;

    font-weight:500;

    margin-bottom:25px;

}


.hero p{

    max-width:700px;

    line-height:1.7;

    font-size:19px;

    opacity:.95;

}
/* =======================================================
                CARTE DE CONNEXION
======================================================= */

.login-container{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:100;

    padding:30px;

}

.login-box{

    width:430px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    border-radius:22px;

    padding:45px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.40);

    color:#333;

    transition:.30s;

}

.login-box:hover{

    transform:translateY(-5px);

    box-shadow:
        0 40px 100px rgba(0,0,0,.45);

}

.login-box h3{

    font-family:"Cormorant Garamond",serif;

    color:#8b1d2d;

    text-align:center;

    font-size:42px;

    margin-bottom:30px;

}

.login-box label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:#444;

}

.login-box input{

    width:100%;

    padding:16px 18px;

    margin-bottom:22px;

    border-radius:12px;

    border:1px solid #DDD;

    font-size:17px;

    transition:.20s;

}

.login-box input:focus{

    outline:none;

    border-color:#8b1d2d;

    box-shadow:0 0 0 3px rgba(139,29,45,.15);

}

.login-box button{

    width:100%;

    padding:18px;

    border:none;

    border-radius:12px;

    background:#8b1d2d;

    color:white;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.25s;

}

.login-box button:hover{

    background:#6d1623;

}

#erreur{

    min-height:24px;

    margin-top:15px;

    text-align:center;

    color:#C62828;

}

#version{

    margin-top:25px;

    text-align:center;

    color:#888;

    font-size:.9rem;

}