* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  width: 100%;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
main {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background-image: url("https://www.infobae.com/resizer/v2/AE7KT2XUWZDTTLJOKFFQFM4N7M.png?auth=d896fa33c7876ff1fd53427f7664424c45c73a759487904caa2782248d82e049&smart=true&width=992&height=558&quality=85");
  background-repeat: none;
  background-size: cover;
}

header h1 {
  background-color: black;
  color: white;
  width: 100%;
  text-align: center;
}
form {
  background-color: rgba(0, 0, 0, 0.651);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 300px;
  margin: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  gap: 10px;
}
form input {
  width: 90%;
  padding: 10px;
  outline: none;
  border: none;
  border-radius: 5px;
  padding-left: 5px;
}

form input:hover {
  box-shadow: 0px 0px 10px gray;
}

form button {
  background-color: rgb(167, 14, 14);
  border-radius: 5px;
  border: none;
  width: 90%;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

form button:hover {
  background-color: rgb(124, 7, 7);
}

.volver {
  background-color: black;
  border-radius: 10px;
  color: white;
  width: auto;
  padding: 10px;
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.volver:hover {
  background-color: white;
  color: black;
}

#verificarCorreoDiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: 5px;
  box-shadow: 0px 0px 10px white;
  background-color: rgba(0, 0, 0, 0.692);
  width: 300px;
  height: 300px;
  margin: 5px;
  backdrop-filter: blur(10px);
}

#verificarCorreoDiv h3 {
  font-size: 1.5rem;
  color: white;
  text-transform: uppercase;
  text-align: center;
}

#verificarCorreoDiv p {
  text-align: center;
  margin-top: 20px;
  color: white;
}
.logueo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  background-color: #007bff;
  padding: 5px;
  color: white;
  margin: auto;
  border-radius: 5px;
  width: auto;
  height: 2rem;
  text-align: center;
  transition: all 2s;
}

.logueo:hover {
  scale: 1.5;
}

footer {
  width: 100%;
  height: 15vh;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
