/* ==========================================================
   SAMA AUTH
   Design System
========================================================== */

/* ==========================================================
   Conteneur
========================================================== */

.sama-auth{

    max-width:520px;
    margin:70px auto;
    background:#ffffff;

    border-radius:16px;

    padding:40px;

    box-shadow:
        0 10px 35px rgba(0,0,0,.08);

}

.sama-auth h1,
.sama-auth h2,
.sama-auth h3{

    text-align:center;

    margin-top:0;

    margin-bottom:25px;

    color:#222;

}

.sama-auth p{

    margin-bottom:18px;

}

/* ==========================================================
   Champs
========================================================== */

.sama-auth label{

    display:block;

    font-weight:600;

    margin-bottom:8px;

    color:#444;

}

.sama-auth input[type=text],
.sama-auth input[type=email],
.sama-auth input[type=password]{

    width:100%;

    height:50px;

    padding:0 16px;

    border:1px solid #dcdfe4;

    border-radius:10px;

    background:#ffffff;

    font-size:15px;

    transition:.25s;

    box-sizing:border-box;

}

.sama-auth input:focus{

    outline:none;

    border-color:#f97316;

    box-shadow:
        0 0 0 4px rgba(249,115,22,.12);

}

/* ==========================================================
   Checkbox
========================================================== */

.sama-auth input[type=checkbox]{

    margin-right:8px;

}

/* ==========================================================
   Boutons
========================================================== */

.sama-auth button{

    width:100%;

    height:50px;

    border:none;

    border-radius:10px;

    background:#f97316;

    color:#ffffff;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.25s;

}

.sama-auth button:hover{

    transform:translateY(-2px);

    box-shadow:
        0 8px 18px rgba(249,115,22,.30);

}

/* ==========================================================
   Liens
========================================================== */

.sama-auth-links{

    text-align:center;

    margin-top:25px;

}

.sama-auth-links a{

    color:#f97316;

    text-decoration:none;

    font-weight:600;

}

.sama-auth-links a:hover{

    text-decoration:underline;

}

/* ==========================================================
   Ligne
========================================================== */

.sama-auth hr{

    border:none;

    border-top:1px solid #ececec;

    margin:35px 0;

}

/* ==========================================================
   Bloc renvoi email
========================================================== */

.sama-auth-resend{

    text-align:center;

}

.sama-auth-resend p{

    color:#666;

}

/* ==========================================================
   Messages
========================================================== */

.sama-auth-error{

    background:#ffe9e9;

    border:1px solid #e74c3c;

    color:#b42318;

    padding:16px 18px;

    border-radius:10px;

    margin-bottom:25px;

    font-size:15px;

}

.sama-auth-success{

    background:#eafaf1;

    border:1px solid #2ecc71;

    color:#1e8449;

    padding:16px 18px;

    border-radius:10px;

    margin-bottom:25px;

    font-size:15px;

}

/* ==========================================================
   Responsive
========================================================== */

@media(max-width:600px){

    .sama-auth{

        margin:25px 15px;

        padding:25px;

    }

}
/*--------------------------------------------------------------
# SAMA AUTH - Boutons Mon Compte
--------------------------------------------------------------*/

.sama-auth-account-buttons{
    display:flex;
    gap:12px;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
}

.sama-auth-account-buttons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:170px;
    padding:12px 22px;
    border-radius:10px;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    transition:.25s ease;
    box-sizing:border-box;
}

.sama-auth-register-button{
    background:#ff6b00;
    color:#fff;
    border:2px solid #ff6b00;
}

.sama-auth-register-button:hover{
    background:#e65f00;
    border-color:#e65f00;
    color:#fff;
}

.sama-auth-login-button{
    background:#fff;
    color:#ff6b00;
    border:2px solid #ff6b00;
}

.sama-auth-login-button:hover{
    background:#ff6b00;
    color:#fff;
}

@media (max-width:768px){

    .sama-auth-account-buttons{
        flex-direction:column;
    }

    .sama-auth-account-buttons a{
        width:100%;
    }

}