body {
    font-family: Arial, sans-serif;
    padding: 30px;
    background-color: #f0f8ff;
  }
  
  h1 {
    color: #01579b;
  }
  
  a {
    color: #0288d1;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
    color: #69bd02;
  }
  
  /* :focus -> cuando haces clic o tab en el input */
  input:focus {
    border: 2px solid #24a700;
    outline: none;
    background-color: #e0f7fa;
  }
  
  button {
    padding: 10px 20px;
    background-color: #4db6ac;
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    cursor: pointer;
  }
  
  /* :hover -> al pasar el cursor por el botón */
  button:hover {
    background-color: #00897b;
  }
  
  /* :active -> cuando se hace clic (presionado) */
  button:active {
    background-color: #00695c;
    transform: scale(0.97);
  }
  