@font-face {
	font-family: pfufont;
	src: url("fonts/PFUniversal-Regular_1.otf") format("opentype");
}

#login_wrapper{
	background: url(../images/login-background.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100%;
}

#outter_login{
	text-align:center;
	position:relative;
	border: 1px solid #eae2e2;
	height: 55%;
	width:50px;
	border-radius: 8px;
	margin-left: auto;
    margin-right: auto;
	width: 28%;
    margin-top: 200px;
}

#copyright_div{
	text-align:center;
	margin-left: auto;
    margin-right: auto;
	position:relative;
	color: white;
    font-family: pfufont;
    margin-top: 5px;
}

#login-site-logo{
	width: 162px;
	margin-top: -85px;
	width: 28%;
}

input[type=text]{
    width:100%;
    border:2px solid #aaa;
    border-radius:4px;
    margin:8px 0;
    outline:none;
    padding:8px;
    box-sizing:border-box;
    transition:.3s;
  }
  
  input[type=text]:focus{
    border-color:dodgerBlue;
    box-shadow:0 0 8px 0 dodgerBlue;
  }
  
  input[type=password]{
    width:100%;
    border:2px solid #aaa;
    border-radius:4px;
    margin:8px 0;
    outline:none;
    padding:8px;
    box-sizing:border-box;
    transition:.3s;
  }
  
  input[type=password]:focus{
    border-color:dodgerBlue;
    box-shadow:0 0 8px 0 dodgerBlue;
  }
  
  .inputWithIcon input[type=text]{
    padding-left:40px;
  }
  .inputWithIcon input[type=password]{
    padding-left:40px;
  }
  
  .inputWithIcon{
    position:relative;
  }
  
  .inputWithIcon i{
    position:absolute;
    left:0;
    top:8px;
    padding:9px 8px;
    color:#aaa;
    transition:.3s;
  }
  
  .inputWithIcon input[type=text]:focus + i{
    color:dodgerBlue;
  }
  .inputWithIcon input[type=password]:focus + i{
    color:dodgerBlue;
  }
  
  .inputWithIcon.inputIconBg i{
    background-color:#aaa;
    color:#fff;
    padding:9px 4px;
    border-radius:4px 0 0 4px;
  }
  
  .inputWithIcon.inputIconBg input[type=text]:focus + i{
    color:#fff;
    background-color:dodgerBlue;
  }
  .inputWithIcon.inputIconBg input[type=password]:focus + i{
    color:#fff;
    background-color:dodgerBlue;
  }
  
  .inputs_container{
	width: 75%;
    margin-left: auto;
    margin-right: auto;
	padding-top: 50px;
  }
  
  .fa-user{
	  font-size: 2.1rem !important;
  }
  
  .fa-at{
	  font-size: 2.1rem !important;
  }
  
  .fa-unlock-alt{
	  font-size: 2.1rem !important;
  }
  
  .login_button{
		width: 100%;
		height: 40px;
		margin-top:7px;
		cursor:pointer;
		background:#004F95;
		padding-top: 4px;
  }
  .recover_button{
		width: 100%;
		height: 40px;
		margin-top:7px;
		cursor:pointer;
		background:#004F95;
		padding-top: 4px;
  }
  .recover_complete_button{
		width: 100%;
		height: 40px;
		margin-top:7px;
		cursor:pointer;
		background:#004F95;
		padding-top: 4px;
  }
  
  .login_button:hover{
	  background:#003B6F;
  }
  .recover_button:hover{
	  background:#003B6F;
  }
  .recover_complete_button:hover{
	  background:#003B6F;
  }
  
  .login_button_label{
		font-family: pfufont;
		color: white;
		font-size: 21px;
  }
  .recover_button_label{
		font-family: pfufont;
		color: white;
		font-size: 21px;
  }
  .recover_complete_button_label{
		font-family: pfufont;
		color: white;
		font-size: 21px;
  }
  
  .after_button_container{
	  width:100%;
	  height:50px;
  }
  .syndemenos_container{
	  width:55%;
	  height:50px;
	  padding-top: 15px;
	  float:left;
  }
  .ksexasate_container{
	  width:45%;
	  height:50px;
	  float:left;
	  font-family: pfufont;
	font-size: 14px;
	padding-top: 15px;
  }
  
  #recover_text{
	font-family: pfufont;
    font-size: 19px;
  }
  #recover_complete_text{
	font-family: pfufont;
    font-size: 19px;
	color:green;
  }
  #lathos_kodikos_text{
	 font-family: pfufont;
    font-size: 19px;
		color:red;
  }
  #wrong_recover_mail_text{
	  font-family: pfufont;
    font-size: 19px;
		color:red;
  }
  #recover_wrong_complete{
	  font-family: pfufont;
    font-size: 19px;
		color:red;
  }
 /*************************************
CUSTOM CHECKBOX CSS
**************************************/ 

  .container {
	font-family:pfufont;
    display: block;
    position: relative;
    //padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 1px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

 /*************************************
END OF CUSTOM CHECKBOX CSS
**************************************/ 

@media (max-width:1720px){
	.container {
			font-size:13px;
	}
	.checkmark{
		height: 17px;
		width: 17px;
	}
	.ksexasate_container{
			font-size:13px;
	}
}

@media (max-width:1600px){
	.container {
			font-size:12px;
	}
	.checkmark{
		height: 16px;
		width: 16px;
	}
	.ksexasate_container{
			font-size:12px;
	}
}

@media (max-width:1470px){
	.container {
			font-size:13px;
	}
	.checkmark{
		height: 17px;
		width: 17px;
	}
	.ksexasate_container{
			font-size:13px;
	}
	#outter_login{
		width:40%;
	}
}

@media (max-width:1130px){
	.container {
			font-size:14px;
	}
	.checkmark{
		height: 18px;
		width: 18px;
	}
	.ksexasate_container{
			font-size:14px;
	}
	#outter_login{
		width:50%;
	}
}

@media (max-width:1000px){
	#outter_login {
		width: 61%;
		text-align: center;
		position: relative;
		border: 1px solid #eae2e2;
		height: 57%;
		border-radius: 8px;
		margin-left: auto;
		margin-right: auto;
		margin-top: 140px;
	}
}

@media (max-width:820px){
	#outter_login {
		width: 78%;
	}
}

@media (max-width:530px){
	#outter_login {
		width: 92%;
		height: 54%;
	}
}