/* Reset básico y estilos generales */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-image: url('/res/content-lab-background.jpeg');
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}


h1, h2 {
  margin-bottom: 15px;
}

h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

input, button {
  font-size: 18px;
}

button {
  cursor: pointer;
  background-color: #702d14db;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #702d14;
}

/* Contenedor general para toda la página */
.page-container {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 90vmax;
  margin: 0 auto;
  padding: 75px;
}

/* Estilos para el contenedor de inicio de sesión */
#login-container, #app-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Estilos para el input del correo */
#email {
  width: 100%;
  padding: 10px 15px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  box-sizing: border-box;
}

#error-message {
  color: red;
  font-weight: bold;
}

.logo {
  display: block;
  width: 200px;
  margin: 0 auto 30px;
}


/* Ajuste de márgenes para los contenedores internos */
#login-container, #content-lab {
  margin: 0;
}

/* Estilos para el botón */
#submit-email {
  width: 100%;
}



/* Estilos para dispositivos móviles y tablets */
@media screen and (max-width: 767px) {
  .page-container {
    padding: 7vmax 4vmax;
  }
}
