/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }

/* Contenedor principal para centrar solo el panel de login */
.login-page {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: url('../images/landscape-antigua.JPG') no-repeat center center fixed;
    background-size: cover;
  }
  
  /* Overlay: div extra para la transparencia negra */
  .login-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Ajusta el nivel de transparencia aquí */
    z-index: 0;
  }
  
  /* Contenedor del formulario de login */
  .login-container {
    position: relative;
    z-index: 1;  /* Se muestra por encima del overlay */
    max-width: 400px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* Título del formulario */
  .login-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #000;
  }
  
  /* Grupos de input */
  .input-group {
    margin-bottom: 1rem;
  }
  .input-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: normal;
    color: #000;
  }
  .input-group input {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #000;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #f9f9f9;
  }
  
  /* Botón de inicio de sesión */
  .btn.login-btn {
    background-color: #75FBD3;  /* Fondo del botón */
    color: #000;              /* Texto en negro */
    border: none;
    padding: 0.7rem;
    width: 100%;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 0.6rem;
  }
  .btn.login-btn:hover {
    background-color: #5ae6c4;
  }
  
  /* Footer del formulario */
  .login-footer {
    text-align: center;
    margin-top: 1rem;
  }
  .register-link {
    color: black;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
  }
  .register-link:hover {
    text-decoration: underline;
  }
  