/* ===========================
   PRONOSPRO - FORMULAIRE
=========================== */

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

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#0f172a;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    padding:20px;
}

.register-box{

    width:100%;
    max-width:450px;

    background:#1e293b;

    border-radius:15px;

    padding:35px;

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

}

.logo{

    text-align:center;

    margin-bottom:30px;

}

.logo img{

    width:80px;

}

.logo h2{

    color:#ffffff;

    margin-top:10px;

}

.logo p{

    color:#94a3b8;

    font-size:14px;

}

.form-group{

    margin-bottom:20px;

}

.form-group label{

    display:block;

    color:#ffffff;

    margin-bottom:8px;

    font-size:14px;

}

.input-box{

    position:relative;

}

.input-box i{

    position:absolute;

    left:15px;

    top:50%;

    transform:translateY(-50%);

    color:#22c55e;

    font-style:normal;

    font-size:18px;

}

.input-box input{

    width:100%;

    height:50px;

    padding-left:48px;
    padding-right:45px;

    border:1px solid #334155;

    border-radius:8px;

    background:#0f172a;

    color:#ffffff;

    outline:none;

    transition:.3s;

}

.input-box input:focus{

    border-color:#22c55e;

    box-shadow:0 0 10px rgba(34,197,94,.35);

}

.input-box input::placeholder{

    color:#64748b;

}

.toggle-password{

    position:absolute;

    right:15px;

    top:50%;

    transform:translateY(-50%);

    cursor:pointer;

    color:#94a3b8;

}

.checkbox{

    display:flex;

    align-items:flex-start;

    gap:10px;

    color:#cbd5e1;

    font-size:13px;

    margin-bottom:20px;

}

.checkbox input{

    margin-top:4px;

}

button{

    width:100%;

    height:52px;

    background:#22c55e;

    border:none;

    border-radius:8px;

    color:#ffffff;

    font-size:16px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    background:#16a34a;

}

.links{

    text-align:center;

    margin-top:20px;

    color:#cbd5e1;

}

.links a{

    color:#22c55e;

    text-decoration:none;

}

.links a:hover{

    text-decoration:underline;

}

@media(max-width:500px){

    .register-box{

        padding:25px;

    }

}