* {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}
html,
body {
  width: 100%;
  height: 100%;
    background: url(../immagini/wall.jpg)fixed;
  font-family: 'Open Sans', sans-serif;
  font-weight: 200;
}
.login {
  position: relative;
  top: 50%;
  width: 350px;
  display: table;
  margin: -150px auto 0 auto;
  background: #fff;
  border-radius: 4px;
}
.legend {
  position: relative;
  width: 100%;
  display: block;
  background: #007593;
  padding: 25px;
  color: #fff;
  font-size: 20px;
}
.pin{
  font-size: 25px;
}

.input {
  position: relative;
  width: 90%;
  margin: 15px auto;
}
.input span {
  position: absolute;
  display: block;
  color: #d4d4d4;
  left: 10px;
  top: 8px;
  font-size: 20px;
}
.input input {
  width: 100%;
  padding: 7px 5px 10px 40px;
  display: block;
  border: 1px solid #EDEDED;
  border-radius: 4px;
  transition: 0.2s ease-out;
  color: #000;
}
.input input:focus {
  padding: 10px 5px 10px 10px;
  outline: 0;
  border-color: #1b4470;
}
.submit {
  width: 65px;
  height: 65px;
  display: block;
  margin: 0 auto -15px auto;
  background: #fff;
  border-radius: 100%;
  border: 1px solid #1b4470;
  color: #1b4470;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0px 0px 0px 7px #fff;
  transition: 0.2s ease-out;
}
.submit:hover {
  background: #007593;
  color: #fff;
  outline: 0;
}
.submit:focus {
  background: #FFF;
  color: #1b4470;
  outline: 0;
}

.errore {
  width: 350px;
  text-align: center;
  color: #fff;
  background: #F62217;
  padding: 10px 0;
  font-size: 14px;
  display: none;
}
