/* CSS Document */

@font-face {
	font-family: Tahoma, "Trebuchet MS", sans-serif;
	/*font-family: 'PTSerif-Caption'; */
	/* src: url('../fonts/PT_Serif-Caption-Web-Regular.eot'); */
	/* src: local('☺'), url('../fonts/PT_Serif-Caption-Web-Regular.woff') format('woff'),  */ 
	/* url('../fonts/PT_Serif-Caption-Web-Regular.ttf') format('truetype'), url('../fonts/PT_Serif-Caption-Web-Regular.svg') format('svg'); */
	font-weight: normal;
	font-style: normal;
}

body {
  /**background: url(../images/bg-body.jpg) repeat left top; **/
  background-color: #111;
  color: #fff;
  font-family: Tahoma, "Trebuchet MS", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
.login-box {
  border: 1px solid #333;
  padding: 40px;
  width: 320px;
  text-align: center;
  background: #072438;
  border-radius: 8px;
}
h2 {
  font-weight: 200;
  letter-spacing: 3px;
  margin-bottom: 30px;
  color: #fff;
}
input {
  background: #111;
  border: 1px solid #333;
  color: #fff;
  padding: 12px;
  width: 100%;
  margin-bottom: 15px;
  box-sizing: border-box;
  outline: none;
  border-radius: 4px;
}
input:focus {
  border-color: #f34e4e;
}
button {
  background:#18557B ;			
  color: #FFFFFF;
  border: none;
  padding: 12px;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s;
}
button:hover {
  background: #f34e4e;
  color: #fff;
}
.error-alert {
  background: rgba(243, 78, 78, 0.1);
  color: #f34e4e;
  padding: 10px;
  border: 1px solid #f34e4e;
  margin-bottom: 20px;
  font-size: 0.85rem;
  border-radius: 4px;
}
.captcha-box {
  margin: 15px 0;
  color: #888;
  font-size: 0.9rem;
  border-top: 1px solid #222;
  padding-top: 15px;
}
.hidden-field {
  display: none !important;
}
.password-wrapper input {
    padding-right: 40px !important; /* Lascia spazio all'occhio */
}