.maxWidth {
  width: 100%;
  margin: 0 auto;
}

.contenitoreLogin {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;  
}

/*Immagine di sfondo*/
.contenitoreLogin::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255,255,255,0.6);
}

/*Riquadro dietro form di login*/
.riquadroLogin {
  width: 500px;
  border-radius: 10px;
  overflow: hidden;
  padding: 55px 55px 37px 55px;

  background: #f85252;
  background: -webkit-linear-gradient(top, rgba(23,4,8,0.8), rgba(62,62,62,0.8));
  background: -o-linear-gradient(top, rgba(23,4,8,0.8), rgba(62,62,62,0.8));
  background: -moz-linear-gradient(top, rgba(23,4,8,0.8), rgba(62,62,62,0.8));
  background: linear-gradient(top, rgba(23,4,8,0.8), rgba(62,62,62,0.8));
}

.riquadroPwdScaduta {
  width: 500px;
  border-radius: 10px;
  overflow: hidden;
  padding: 55px 55px 37px 55px;

  background: #f85252;
  background: -webkit-linear-gradient(top, rgba(255,255,255,0.8), rgba(255,255,255,0.8));
  background: -o-linear-gradient(top, rgba(255,255,255,0.8), rgba(255,255,255,0.8));
  background: -moz-linear-gradient(top, rgba(255,255,255,0.8), rgba(255,255,255,0.8));
  background: linear-gradient(top, rgba(255,255,255,0.8), rgba(255,255,255,0.8));
}

.riquadroPwdDimenticata {
  width: 1000px;
  border-radius: 10px;
  overflow: hidden;
  padding: 55px 55px 37px 55px;
  color: #999999;
  background: #f85252;
  background: -webkit-linear-gradient(top, rgba(23,4,8,0.8), rgba(62,62,62,0.8));
  background: -o-linear-gradient(top, rgba(23,4,8,0.8), rgba(62,62,62,0.8));
  background: -moz-linear-gradient(top, rgba(23,4,8,0.8), rgba(62,62,62,0.8));
  background: linear-gradient(top, rgba(23,4,8,0.8), rgba(62,62,62,0.8));
}

@media (max-width: 576px) {
  .riquadroLogin {
    padding: 55px 15px 37px 15px;
  }
}

.logoLogin {
  font-size: 60px; 
  color: #333333;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0 auto;
}

.titoloLogin {
  font-family: Verdana;
  font-size: 30px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  padding-top: 27px; 
  padding-bottom: 34px;
  display: block;
}

.titoloPwdScaduta {
  font-family: Verdana;
  font-size: 30px;
  color: #999999;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  padding-top: 27px; 
  padding-bottom: 34px;
  display: block;
}

/*input box div*/
.wrapInputLogin {
  width: 100%;
  position: relative;
  border-bottom: 2px solid rgba(255,255,255,0.24);
  margin-bottom: 30px;
}

.inputLogin {
  font-family: Verdana;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  text-transform: none;
  display: block;
  width: 100%;
  height: 45px;
  background: transparent;
  padding: 0 5px 0 38px;
}

.labelInputLogin {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.labelInputLogin::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  background: #fff;
}

.labelInputLogin::after {
  font-family: Material-Design-Iconic-Font;
  font-size: 22px;
  color: #fff;

  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 6px;
  left: 0px;
  padding-left: 5px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.inputLogin:focus {
  padding-left: 5px;
}

.inputLogin:focus + .labelInputLogin::after {
  top: -22px;
  font-size: 18px;
}

.inputLogin:focus + .labelInputLogin::before {
  width: 100%;
}

.has-val.input100 + .labelInputLogin::after {
  top: -22px;
  font-size: 18px;
}

.has-val.inputLogin + .labelInputLogin::before {
  width: 100%;
}

.has-val.inputLogin {
  padding-left: 5px;
}

.wrapButtonLogin {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.buttonLogin {
  font-family: Verdana;
  font-size: 16px;
  color: #555555;
  line-height: 1.2;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 120px;
  height: 50px;
  border-radius: 25px;

  background: #f85252;
  background: -webkit-linear-gradient(bottom, #170408, #403e3e);
  background: -o-linear-gradient(bottom, #170408, #403e3e);
  background: -moz-linear-gradient(bottom, #170408, #403e3e);
  background: linear-gradient(bottom, #170408, #403e3e);
  position: relative;
  z-index: 1;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.buttonLogin::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: #fff;
  top: 0;
  left: 0;
  opacity: 1;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.buttonLogin:hover {
  color: #fff;
}

.buttonLogin:hover:before {
  opacity: 0;
}

.buttonLogin:focus {
  color: #fff;
}

.buttonLogin:focus:before {
  opacity: 0;
}

.simpleText {
  font-family: Verdana;
  font-size: 16px;
  color: #e5e5e5;
  line-height: 1.5;
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Verdana;
}

/*---------------------------------------------*/
a {
	font-family: Verdana;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  	-o-transition: all 0.4s;
  	-moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
    color: #fff;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Verdana;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

input:focus {
  border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #fff;}
input:-moz-placeholder { color: #fff;}
input::-moz-placeholder { color: #fff;}
input:-ms-input-placeholder { color: #fff;}

label {
  margin: 0;
  display: block;
}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}

