*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';
}
.container{
    margin: 0 auto;
    margin-top: 1.2rem;
    width: 400px;
    min-height: 500px;
    background-color: #fff;
    border-radius: 5px;
    padding: 40px 30px;
    box-shadow: .0rem .0rem .1rem .1rem rgb(168, 116, 116);
}
.login-texte{
    font-size: 2rem;
    font-weight: 800;
    text-decoration: underline;
}
.container .login-texte{
    color: #111;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
    
}
.container .login-email .input-group{
    width: 100%;
    height: 50px;
    margin-bottom: 25px;
}
.container .login-email .input-group input{
    width: 100%;
    height: 100%;
    border: 2px solid #6c7293;
    padding: 15px 20px;
    border-radius: 10px;
    background: transparent;
    text-align: center;
    font-size: 1.3rem;
    outline: none;
    transition: .3s;
}
.container .login-email .input-group input:focus .container .login-email .input-group input:valid {
    border-color: #0fb294;
}
.container .login-email .input-group .btn{
    display: block;
    width: 100%;
    padding: 15px 20px;
    text-align: center;
    border: none;
    background: #0fb294;
    outline: none;
    border-radius: 10px;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    transition: .3s;
}
.container .login-email .input-group .btn:hover{
    transform: translateY(-5px);
    background: #0fb294;
}
.login-register-texte{
    color: #111;
    font-weight: 600;
}
.login-register-texte a{
    text-decoration: none;
    color: #0fb294;
}
.container .red-message{
color: red !important;
font-size: .8rem;
font-weight: bold;
text-align: center;

}
.btn-rs-facebook{
    height: 50px;
    width: 100%;
    background: #fff;
    color: #000;
    cursor: pointer;
    border: 1px solid #3b5998;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0.5rem 1.2rem rgba(0, 0, 0, .1);
}
.btn-rs-google{
    height: 50px;
    width: 100%;
    background: #fff;
    color: #000;
    cursor: pointer;
    border: 1px solid rgb(218, 50, 50);
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0.5rem 1.2rem rgba(0, 0, 0, .1);
}
.hr-ligne{
    text-align: center;
    display: flex;
    align-items: center;
    color: #000;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 1rem;
}
.hr-ligne::after{
        border-top: .0625rem solid;
        color: #c4c4c4;
        content: "";
        flex: 1;
         margin: 0.6rem;
    }
.hr-ligne::before{
    border-top: .0625rem solid;
    color: #c4c4c4;
    content: "";
    flex: 1;
     margin: 0.6rem;
}
@media (max-width: 430px) {
    .container{
        width: 300px;
    }
}