body{
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: #23526C;  
}

.box{
  width: 400px;
  padding: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #D5D5D5;
  text-align: center;
  border-radius: 15px;
}

.box h2{
  color: #000000;
  text-transform: uppercase;
  /*font-weight: 500;*/
}

/*
.box h1{
  color: #000000;
  text-transform: uppercase;
  font-weight: 200;
}
*/

.box input[type = "text"], .box input[type = "password"]{
  border: 0;
  background: #ffffff;
  display: block;
  margin: 20px auto;
  text-align: center;
  /*border: 2px solid #ffffff;*/
  padding: 14px 10px;
  width: 300px;
  /*outline: none;*/
  color: #000000;
  border-radius: none;
  transition: 0.25s;
}

.box input[type = "submit"]{
  border: 0;
  background: #23526C;
  display: block;
  margin: 20px auto;
  text-align: center;
  border: none; /*border: 2px solid #ffffff;*/
  padding: 14px 40px;
  width: 320px;
  outline: none;
  color: white;
  border-radius: 10px;
  transition: 0.25s;
  cursor: pointer;
  /* box-shadow: 0px 10px; Para adicionar sombra (X,Y) */
}

.box u{
  color: #000000;
  transition: 0.25s;
  cursor: pointer;
} 



USINAGEM PANUCCI