/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
    background-image: url('/images/Login/iluminacion.png'); /* Imagen de fondo de la página */
    background-size: cover; /* Ajusta el tamaño de la imagen al contenedor */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    background-position: center; /* Centra la imagen */
    margin: 0;
}

.content {
  text-align: center;
  padding: 20px;
  margin-top: 50px; /* Ajusta para dar espacio entre el logo y el borde superior */
}

.logo-container img {
  width: 100%;
  max-width: 500px; /* Ajusta el tamaño máximo del logo */
  margin-bottom: 20px;
}

.form-container {
  padding: 20px;
  border-radius: 15px;
  display: inline-block;
  width: 90%;
  max-width: 500px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.input-container {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 25px;
  margin-bottom: 15px;
  padding: 10px 20px;
  width: 100%; /* Asegura que se ajuste dentro del contenedor */
  height: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.input-container img {
  max-height: 25px; /* Limita la altura máxima */
  max-width: 25px; /* Limita el ancho máximo */
  object-fit: contain; /* Mantiene la proporción de la imagen */
  margin-right: 15px; /* Espaciado con el texto */
}

input {
  border: none;
  outline: none;
  font-size: 18px;
  width: 100%;
}

button {
  background: red;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  width: 150px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

button:hover {
  background: #EEA11D;
}

.footer {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.footer img {
  width: 100%;
  height: auto; /* Asegura que se ajuste proporcionalmente */
  max-height: 150px; /* Altura máxima del piso */
}
