@import url("../fonts/Helvetica Neue/init_fonts.css");




/***************************
      LOGIN
****************************/
body {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;

    
    background:   url("/public/templates/images/cover.png") no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;


}

.loginmailam{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
}

.center-login-ml{
    
    background: white;
    
    border-radius: 15px;

}

.center-login-ml h1{ 
    text-align: center;
    padding: 0;
    margin: 0;
/*    border-bottom: 1px solid silver;*/
 }

 .center-login-ml form{
    padding: 0 0px;
    box-sizing: border-box;
 }
form .txt_field{
    position: relative;
    border-bottom: 2px solid #adadad;
    margin: 30px 20px;
    
}

.txt_field input{
    width: 100%;
    padding: 0 5px;
    height: 40px;
    font-size: 16px;
    border: none;
    outline: none;
    background-color: transparent;

} 

.txt_field label{
    position: absolute;
    top: 50%;
    left: 5px;
    color: #adadad;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
    transition: .2s;

}

.txt_field span::before{
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #2691d9;
  transition: .5s;
}
.txt_field input:focus ~ label,
.txt_field input:valid ~ label{
  top: -5px;
  color: #2691d9;
}
.txt_field input:focus ~ span::before,
.txt_field input:valid ~ span::before{
  width: 100%;
}




.login-btn-ml {
    font-size: 18px;
    color: white;
    background: #ff0066;
    width: 100%;
    height: 50px;
    border-radius: 0 0 15px 15px;
    border: none;
    outline: none;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
 


}



.login-btn-ml:hover{
    font-size: 18px;
    color: white;
    background: black;
    width: 100%;
    height: 50px;
    border-radius: 0 0 15px 15px;
    border: none;
    outline: none;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}










.copyrightmailam  {
    


    font-size: 12px;
    margin-top: 30px;
    align-items: center;
    text-align: center;
    
    color: #FF0066;
    text-shadow: 1px 1px 1px #000;;
    

}
.copyrightmailam a {
 color: red;
}

.validation-summary-errors{
    color: red;
    text-align: center;
    align-items: center;
    padding: 0 20px 5px;
}