*,::before,::after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: rgb(185, 197, 190);
}

input,select{
    border: transparent;
    outline: none;
    width: 100%;
    background: transparent;
}

select{
    width: 100%;
}

.groupe-pays{
    display: flex;
}

.groupe-civilite{
    display: flex;
}

.select-hide {
    display: none;
  }


.groupe-id, .groupe-password, .groupe-pays, .groupe-email, .groupe-civilite{
    border: solid .8px rgba(193, 237, 245, 0.774);
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
    border-radius: 25px;
    display: flex;

}
.fa-user, .fa-lock, .fa-location-dot, .fa-phone, .fa-envelope {
    display: inline-block;
    color: rgba(193, 237, 245, 0.774);
    padding: 2px;
}
.groupe-btn button{
    background: rgb(23, 127, 76);
    padding: 7px;
    color:#fff;
    border-color: transparent;
    width: 100%;
    border-radius: 10px;
    margin-top: 5px;
    font-weight: bold;
}


.groupe-btn button:hover{
    background: rgba(23, 127, 77, 0.678);
    cursor: pointer;
      
}

.groupe-phone{
    display: flex;
}

.phone-code{
    width: 20%;
    border-bottom-left-radius: 25px;
    border-top-left-radius: 25px;
    margin-right: 5px;
    border: solid .8px rgba(193, 237, 245, 0.774);
    padding: 10px;
    margin-bottom: 10px;

}

.phone{
    width: 100%;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    border: solid .8px rgba(193, 237, 245, 0.774);
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    
}

.formulaire-login{
    
    width: 100%;
}

.contain-form-login{
    background: #99bbe8;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
}

.succes-message{
    color: #25d366;
    text-align: center;
    padding: 10px;
}

.error-message{
    color: #dc3545;
    text-align: center;
}

/* media queries */
@media screen and (max-width:500px){

 
    body{
        width: 100%;
        display: block;
        position: relative;
    }
    .contain{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
  
}