 body {
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    font-size: 12px;
    overflow: hidden;
  }

  .login-root {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

  .animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://static.vecteezy.com/system/resources/previews/011/672/173/original/elegant-geometric-blue-and-gray-business-abstract-background-eps10-vector.jpg'); /* ANIMACION */
    background-size:auto; /* Cover the entire container */
    display: flex;
    background-size:cover;   
    z-index: -1;
  }

  @keyframes moveBackground {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 100% 0;
    }
  }

  .login-container {
    background-color: white;
    border-radius: 30px;
    overflow: hidden;
    width: 90%;
    max-width: 400px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  }

  .login-header {
    background-color:deepskyblue;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    border-radius: 10px 10px 0 0;
  }

  .login-header i {
    margin-right: 10px;
  }

  .form-container {
    padding: 30px;
  }

  .field {
    margin-bottom: 20px;
  }

  .field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #333;
  }

  .field input {
    width: 90%;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    border: 1px solid #ccc;
    font-size: 13px;
  }

  .submit-btn {
    width: 90%;
    margin-left: 20px;
    padding: 20px;
    border: none;
    border-radius: 12px;
    background-color: deepskyblue;
    color:black;
    font-size: 16px;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
   
}

  .submit-btn:hover {
    background-color:#007bff;
  }

  .footer {
    background-color: #f8f9fa;
    text-align: center;
    padding: 20px 0;
    border-radius: 0 0 10px 10px;
  }

  .footer p {
    margin: 0;
    color: #555;
  }

  .footer a {
    color: #007bff;
    text-decoration: none;
  }

  .footer a:hover {
    text-decoration: underline;
  }

  @media (max-width: 500px) {
    .login-container {
      width: 100%;
      border-radius: 0;
    }
  }

    .notification {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #f44336;
            color: white;
            padding: 15px 20px;
            border-radius: 5px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
            opacity: 0; /* Inicialmente oculta */
            transition: opacity 0.5s ease;
            z-index: 999;
        }
        .notification.show {
            opacity: 1; /* Mostrar la notificación */
        }


        
                    
    /* Estilos para el mensaje de error */
    #message {
    
        margin-top: 10px; /* Espacio superior */
        padding: 10px; /* Espaciado interno */
        background-color: #f8d7da; /* Color de fondo */
        color: #721c24; /* Color de texto */
        border: 1px solid #f5c6cb; /* Borde */
        border-radius: 5px; /* Bordes redondeados */
        text-align: center; /* Alineación del texto */
        transition: opacity 0.5s ease; /* Efecto de transición de opacidad */
    }

    /* Estilos para el mensaje de error visible */
    #message.show {
        display: block; /* Mostrar el mensaje */
        opacity: 1; /* Opacidad completa */
    }