/*=====================================
      AIR FROID INVEST
        inscription.css
======================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:linear-gradient(135deg,#08152D,#0B1F3A,#102D52);
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow-x:hidden;
}

.background{
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at top left,rgba(212,175,55,.10),transparent 40%),
    radial-gradient(circle at bottom right,rgba(212,175,55,.08),transparent 40%);
    z-index:-1;
}

.container{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px 15px;
}

.card{
    width:100%;
    max-width:450px;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    border:1px solid rgba(212,175,55,.25);
    border-radius:20px;
    padding:35px 25px;
    box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.logo{
    text-align:center;
    margin-bottom:20px;
}

.logo img{
    width:110px;
    filter:drop-shadow(0 0 15px rgba(212,175,55,.5));
}

.card h2{
    text-align:center;
    color:#D4AF37;
    margin-bottom:10px;
}

.card p{
    text-align:center;
    color:#ddd;
    font-size:14px;
    margin-bottom:25px;
}

.input-box{
    margin-bottom:18px;
}

.input-box label{
    display:block;
    color:#fff;
    margin-bottom:8px;
    font-size:14px;
    font-weight:500;
}

.input-box input,
.input-box select{
    width:100%;
    padding:14px;
    border:none;
    outline:none;
    border-radius:10px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    font-size:15px;
}

.input-box input::placeholder{
    color:#bdbdbd;
}

.input-box select option{
    color:#000;
}

.btn{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    background:linear-gradient(135deg,#FFD54F,#D4AF37);
    color:#08152D;
    font-size:16px;
    font-weight:700;
    transition:.3s;
    margin-top:10px;
}

.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(212,175,55,.4);
}

.login-link{
    text-align:center;
    margin-top:20px;
}

.login-link p{
    color:#ddd;
    font-size:14px;
}

.login-link a{
    color:#D4AF37;
    text-decoration:none;
    font-weight:700;
}

.login-link a:hover{
    text-decoration:underline;
}

.erreur{
    background:#c62828;
    color:#fff;
    padding:12px;
    border-radius:8px;
    margin-bottom:20px;
    text-align:center;
}

.succes{
    background:#2E7D32;
    color:#fff;
    padding:12px;
    border-radius:8px;
    margin-bottom:20px;
    text-align:center;
}

@media(max-width:500px){

    .card{
        padding:25px 18px;
    }

    .logo img{
        width:90px;
    }

    .card h2{
        font-size:24px;
    }

}