* {
  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;
  gap: 10px;
  width: 400px;
  margin: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}
form input {
  width: 90%;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 5px;
}

form input:focus {
  box-shadow: 0px 0px 10px gray;
  border: none;
  border-radius: 5px;
}

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

.registro:hover {
  background-color: rgb(124, 7, 7);
}

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

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

.exitoso {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.527);
  width: 300px;
  height: 200px;
  color: white;
  padding: 10px;
  border-radius: 10px;
    backdrop-filter: blur(10px);
}
.exitoso h3 {
  font-size: 2rem;
  padding: 10px;
}
.loguear {
  background-color: rgb(187, 9, 9);
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 1s;
}

.loguear:hover {
  background-color: white;
  color: black;
  font-weight: bolder;
  box-shadow: 0px 0px 10px gray;
  scale: 1.2;
}

.registro {
  text-decoration: none;
}
footer {
  width: 100%;
  height: 10vh;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
