:root {
    --azul-claro: #0095C8;
    --azul-medio: #0A5386;
    --azul-oscuro: #032B3F;
    --azul-profundo: #106AA4;
    --gris-oscuro: #4A4A4A;
  }

  body {
    margin: 0;
    height: 100vh;
    background: url('../img/FondoPrincipal.webp') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
  }

  .login-container {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
  }

  .login-container h5 {
    color: var(--azul-oscuro);
    margin-bottom: 1.5rem;
  }

  .form-label {
    color: var(--gris-oscuro);
    font-weight: 500;
  }

  .form-control {
    background-color: #f1f1f1;
    color: var(--gris-oscuro);
    border: 1px solid #ddd;
  }

  .form-control:focus {
    border-color: var(--azul-claro);
    box-shadow: 0 0 0 0.2rem rgba(0, 149, 200, 0.25);
  }

  .btn-primary {
    background-color: var(--azul-medio);
    border: none;
    font-weight: bold;
  }

  .btn-primary:hover {
    background-color: var(--azul-profundo);
  }

  .form-check-label,
  a {
    color: var(--azul-oscuro);
    font-size: 0.9rem;
  }

  a:hover {
    color: var(--azul-profundo);
    text-decoration: underline;
  }

  img.logo {
    max-height: 50px;
    margin-bottom: 1rem;
  }

  .custom-alert {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    text-align: left;
  }

  .alert-error {
    background-color: #f8d7da;
    color: #842029;
  }


  .input-group-text {
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    color: var(--gris-oscuro);
  }

  .modal-custom {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
  }

  .modal-content-custom {
    background-color: #ffffff;
    color: #0095C8;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 90%;
    max-width: 380px;
  }

  .icono-check i {
    font-size: 60px;
    color: #0095C8;
  }

  .texto-exito {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0095C8;
  }

  .btn-confirmar {
    background-color: #0A5386;
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
  }

  .btn-confirmar:hover {
    background-color: #032B3F;
  }

/*------------------------------FOOTER------------------------------------*/

#DivFooter {
    background-color: #032B3F;
}

#footerText {
    color: #f7f7f7;
}

/*------------------------------------------------------------------------*/