/* styles.css */

/* Estilos generales */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #000000;
  background-image: url("/logo/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.container {
  width: 300px;
  margin: 0 auto;
  position: relative;
}

h2 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
}

form {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

label {
  color: #000000;
  display: block;
  margin-bottom: 10px;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #000000;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

input[type="submit"]:hover {
  background-color: brown;
}

