html{
    height:100%;
    
    background: #333333;
    background-image: url("../../images/GlobalSecurity.jpg");
    background-repeat:no-repeat;
-webkit-background-size:cover;
-moz-background-size:cover;
-o-background-size:cover;
background-size:cover;
background-position:center
}
body{
    font-family: 'Open Sans', sans-serif;
    font-size:16px;
    font-weight: 600;
    line-height: 24px;
    color:#333333;
    
}
form{
    margin:0;
    padding:0;
}
.cadre {
    background: rgba(237, 239, 241, 0.76);
    border-radius: 15px; 
}
.loginContainer {
    width:340px;
    margin:80px auto;
}
.cadreContent{
    padding:20px;
}
.localeContainer{
    margin:10px;
    text-align:center;
}
.localeContainer img{
    margin:5px;
    border:none;
    opacity: .5;
}
.localeContainer img:hover{
    margin:5px;
    border:none;
    opacity: 1;
}
.localeContainer a{
    text-decoration:none;
}
.title{
    font-size:32px;
    margin-bottom:20px;
    color: #fff;
    text-align: center;
}
.clear{
    clear:both;
}
.field{
    font-size: 16px;
    color:#34495e;
    margin-top:2px;
    padding:10px;
    width: 280px;
    border:1px solid #999;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.field:focus{
    outline: 2px solid #317be4;
}
.button{
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    width: 200px;
    padding:10px;
    border:1px solid #999;
    background: #317be4;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.button:hover{
    background: #6da88a;
}
.buttonsContent{
    margin-top: 10px;
    text-align: center;
}
.error{
    padding:10px;
    margin:10px 0 20px;
    border: 1px solid #E74C3C;
    color: #E74C3C;
    background: #fff;
}
.transition
, .field
, .button
{
 -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
      -o-transition: all .2s ease-in-out;
         transition: all .2s ease-in-out;
}

/* PASSWORD ICON */

#password-field {
  padding-right: 30px; /* Make space for the icon */
}

#toggle-password {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #aaa; /* Optional: Style the icon */
}