* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background: url('../img/login.png') no-repeat center center fixed  ;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    padding: 20px;
  }
  
  .login-container {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(139, 0, 0, 12);
    width: 90%;
    max-width: 400px;
    text-align: center;
    transition: all 0.3s ease-in-out;
  }
  
  .logo-mivo {
    width: 120px;
    margin-bottom: 15px;
    border-radius: 100%;
  }
  
  .login-container h2 {
    color: #8B0000;
    margin-bottom: 20px;
    font-size: 24px;
  }
  
  .login-container input[type="text"],
  .login-container input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
  }
  
  .login-container button {
    width: 100%;
    padding: 12px;
    background-color: #B22222;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .login-container button:hover {
    background-color: #8B0000;
  }

  .footer-goma {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 14px;
  }
  
  .footer-goma img {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    border-radius: 50%;
    margin-right: 8px;
  }

  
  
  @media screen and (max-width: 768px) {
    .login-container {
      padding: 20px;
      border-width: 2px;
    }
  
    .login-container h2 {
      font-size: 20px;
    }
  
    .login-container input,
    .login-container button {
      font-size: 14px;
    }
  
    .logo-mivo {
      width: 90px;
    }
  }
  
  
  /* MODAL */
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  
  .modal-content {
    background: rgba(255, 255, 255, 0);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    width: 150px;
    height: 150px;
    animation: scaleIn 0.3s ease-in-out;
  }
  

  
  #modal-icon.correcto {
    color: green;
    animation: pop 0.5s ease;
  }
  
  #modal-icon.incorrecto {
    color: red;
    animation: shake 0.5s ease;
  }
  
  .hidden {
    display: none;
  }
  
  .modal-gif {
    border-radius: 20%;
    width: 100px;
    height: auto;
    margin-bottom: 15px;
  }
  /* Animaciones */
  @keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  
  @keyframes shake {
    0% { transform: translateX(-10px); }
    25% { transform: translateX(10px); }
    50% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
    100% { transform: translateX(0); }
  }
  
  @keyframes pop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
  }
  