@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

body, html {
  background-color: #7D8BFA;
  width: 100vw;
  height: 100vh;
}

main {
  position: relative;
  width: 100vw;
  height: 100vh;
}

#login {
  background: whitesmoke;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  transform: translate(-50%, -50%);
}

#login #img {
  display: block;
  background: black url('../img/pexels-js.jpg') no-repeat;
  background-size: cover;
  background-position: center center;
  height: 200px;
}

#login #form {
  display: block;
  padding: 8px;
  font-size: .8em;
}

#form h1 {
  text-align: center;
  padding: 8px;
}

#form p {
  text-align: center;
  padding: 8px;
}

.campo {
  display: block;
  background-color: #7D8BFA;
  width: 100%;
  height: 50px;
  margin: 5px 0px;
  border: 2px solid #4C5259;
  border-radius: 8px;
}

label {
  display: none;
}

div.campo > span {
  color: #4C5259;
  font-size: 2em;
  width: 41px;
  padding: 5px;
}

div.campo > input {
  background: white;
  font-size: 1em;
  width: calc(100% - 46px);
  height: 100%;
  padding: 6px;
  border: 0px;
  border-radius: 6px;
  transform: translateY(-3px);
}

input[type="submit"] {
  background-color: cornsilk;
  width: 100%;
  height: 45px;
  font-size: 1.2em;
  font-family: 'Courier New', Courier, monospace;
  border-radius: 6px;
  border: 1px solid #4C5259;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #28857b;
}