@charset "UTF-8";

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body,
html {
  background-color: rgb(130, 0, 0);
  background-repeat: no-repeat;
  height: 100vh;
  width: 100vw;
}

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

section#login {
  display: block;
  position: absolute;
  background-color: rgb(255, 255, 255);
  height: 500px;
  width: 300px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.75);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

section#login > div#imagem {
  display: block;
  background-image: url(../images/corinthians-cel.jpeg);
  height: 260px;
  background-size: cover;
  border-bottom: 10px solid rgb(15, 15, 15);
  background-position: center center;
  border-radius: 20px 20px 0px 0px;
  box-shadow: inset 0px 0px 50px black;
}

p {
  margin: 15px;
}

div#formulario > form {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -115%);
}

form input {
  width: 250px;
  height: 40px;
  margin-bottom: 10px;
  border: 3px solid red;
  border-radius: 10px;
}

input#enviar {
  border-color: red;
  background-color: red;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

input#enviar:hover {
  background-color: rgb(196, 0, 0);
  border-color: rgb(196, 0, 0);
  transition-duration: 0.2s;
}

a#esqueceu {
  text-decoration: none;
  color: gray;
  position: absolute;
  width: 150px;
  left: 50%;
  transform: translate(-50%, -30%);
}

a#esqueceu:hover {
  text-decoration: underline;
  color: rgb(54, 54, 54);
  transition-duration: 0.2s;
}
