/*
=========================================================
JC Login Designer
Version 1.1
=========================================================
*/

/* Carte */

.tml{
    max-width:700px;
    margin:60px auto;
    background:#fff;
    border-radius:16px;
    padding:50px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

/* Champs */

.tml input[type=text],
.tml input[type=password],
.tml input[type=email]{

    width:100%;
    padding:16px;
    font-size:18px;

    border:1px solid #dcdcdc;
    border-radius:8px;

    margin-top:8px;
    margin-bottom:25px;

    transition:.2s;
}

.tml input:focus{

    border-color:#5865F2;
    outline:none;

    box-shadow:0 0 0 4px rgba(88,101,242,.15);

}

/* Labels */

.tml label{

    font-size:17px;
    font-weight:600;

}

/* Boutons */

/* Conteneur du bouton */
.tml-submit-wrap{
    text-align: center;
    margin: 35px 0 25px;
}

/*=========================================================
Boutons
=========================================================*/

.tml-submit-wrap{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:35px 0 25px;
}

.tml-submit-wrap input[type="submit"],
.tml-submit-wrap button{
    background:#5B61F6;
    color:#fff;
    border:none;
    border-radius:10px;
    padding:16px 40px;
    font-size:22px;
    font-weight:700;
    cursor:pointer;
    min-width:220px;
    transition:.2s;
    margin:0;
}

.tml-submit-wrap input[type="submit"]:hover,
.tml-submit-wrap button:hover{
    background:#4b51ea;
}
/* Checkbox */

.tml input[type=checkbox]{

    margin-right:10px;

}

/* Liens */

.tml-links{

    list-style:none;

    margin-top:35px;

    padding:0;

    text-align:center;

}

.tml-links li{

    margin:10px 0;

}

/* Messages */

.tml-errors,
.tml-messages{

    border-radius:8px;

}