/* RESET y básico */
* {
    box-sizing: border-box;
  }
  
  body {
    background: #e8f5e9; /* verde muy claro */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    color: #2e4d25; /* verde oscuro para texto */
  }
  
  /* Contenedor del login */
  .contenedor_inicio_sesion {
    background: #ffffff;
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(102, 187, 106, 0.3); /* sombra verde clara */
    width: 350px;
    max-width: 90vw;
  }
  
  /* Header con título e imagen */
  .login-header {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .login-header h2 {
    margin-bottom: 0.5rem;
    color: #2e7d32; /* verde oscuro */
  }
  
  .login-header img {
    width: 80px;
    height: auto;
  }
  
  /* Grupos de campos */
  .form-group {
    margin-bottom: 1rem;
  }
  
  label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #388e3c; /* verde medio */
  }
  
  input[type="text"],
  input[type="password"],
  select {
    width: 100%;
    padding: 0.5rem 0.7rem;
    border: 1.5px solid #a5d6a7; /* borde verde claro */
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  input[type="text"]:focus,
  input[type="password"]:focus,
  select:focus {
    border-color: #2e7d32; /* verde oscuro */
    outline: none;
  }
  
  /* Botones */
  .boton {
    background-color: #43a047; /* verde */
    border: none;
    color: white;
    padding: 0.75rem;
    width: 100%;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.3s ease;
  }
  
  .boton:hover {
    background-color: #2e7d32; /* verde más oscuro */
  }
  
  /* Ocultar elementos con la clase ocultar */
  .ocultar {
    display: none !important;
  }
  
  /* Mensajes de alerta */
  .alerta {
    color: #d32f2f; /* rojo oscuro para alertas */
    font-weight: 600;
    margin-top: 1rem;
    min-height: 1.2rem;
    text-align: center;
  }  