@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,500;0,700;1,300&family=Roboto:ital,wght@0,400;1,500;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

.login__container {
  background-image: url(./backg/fondo.jpeg);
  background-position: center;
  background-size: cover;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.container {
  width: 400px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.544);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.login__titulo {
  text-align: center;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 5px;
}

input {
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: seagreen solid;
}

button {
  background-color: #3c6e71;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: rgb(2, 0, 36);
  background: linear-gradient(
    90deg,
    rgba(60, 110, 113, 1) 0%,
    rgba(0, 212, 255, 1) 100%
  );
}
