
/* Login popup form */
@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i');
*{
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}
body{
  height: 100vh;
  width: 100%;
  background: linear-gradient(115deg, rgba(82, 137, 181, 1) 10%,rgba(20, 93, 160, 1) 90%);
}
.show-btn{
  background: #fff;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 500;
  color: #3498db;
  cursor: pointer;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
.show-btn, .container{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

input[type="checkbox"]{
  display: none;
}
.container{
  display: block;
  background: #fff;
  width: 310px;
  padding: 30px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}
#show:checked ~ .container{
  display: block;
}
.container .close-btn{
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 18px;
  cursor: pointer;
}
.container .close-btn:hover{
  color: #3498db;
}
.container .text{
  font-size: 35px;
  font-weight: 600;
  text-align: center;
}
.container form{
  margin-top: -20px;
}
.container form .data{
  height: 45px;
  width: 100%;
  margin: 40px 0;
}
form .data label{
  font-size: 18px;
}
form .data input{
  height: 100%;
  width: 100%;
  padding-left: 10px;
  font-size: 17px;
  border: 1px solid silver;
}
form .data input:focus{
  border-color: #3498db;
  border-bottom-width: 2px;
}
form .forgot-pass{
  margin-top: -8px;
}
form .forgot-pass a{
  color: #3498db;
  text-decoration: none;
}
form .forgot-pass a:hover{
  text-decoration: underline;
}
form .btn{
  margin: 30px 0;
  height: 45px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
form .btn .inner{
  height: 100%;
  width: 300%;
  position: absolute;
  left: -100%;
  z-index: -1;
  background: -webkit-linear-gradient(right, rgba(82, 137, 181, 1), rgba(20, 93, 160, 1), rgba(82, 137, 181, 1), rgba(20, 93, 160, 1));
  transition: all 0.4s;
}
form .btn:hover .inner{
  left: 0;
}
form .btn button{
  height: 100%;
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}
form .signup-link{
  text-align: center;
}
form .signup-link a{
  color: #3498db;
  text-decoration: none;
}
form .signup-link a:hover{
  text-decoration: underline;
}


/************************/
/* MESSAGES */
/************************/
.show_all_messages{
	position: relative;
 	display: block;
	padding: 0;
	margin: 0;
	}
.informations_alert_error{
 	display: block;
	min-height:20px;
	background: #DD0000;
	margin: 0;
	padding: 2px 2px 2px 5px;
	font-size:12px;
	font-style: italic;
	color: #FFFFFF;
	}
.informations_alert_done{
 	display: block;
	min-height:20px;
	background: #005200;
	margin: 0;
	padding: 2px 2px 2px 5px;
	font-size:12px;
	font-style: italic;
	color: #FFFFFF;
	}
.informations_alert_message{
 	display: block;
	min-height:20px;
	margin: 0;
	background: #000052;
	padding: 2px 2px 2px 5px;
	font-size:12px;
	font-style: italic;
	color: #FFFFFF;
	}
