/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {

    background-color: black;

    color: #FFFFFF;

    font-family: "Hack", monospace;

    background-image: url('https://www.transparenttextures.com/patterns/noise.png');

    background-repeat: repeat;

    text-align: left;

    padding: 30px;
}

  a {

    color: #FFFFFF;

    text-decoration: none;

    }

  a:hover {

    color: #ffffff;

    text-shadow: 0 0 5px #ff0066;

  }

  marquee { font-size: 9px; }

  h1 { margin-top: 20px; margin-bottom: 20px; }

  p { margin: 14px 5; }
  
  
   form {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding:20px;
      background-color: black;
    }

    label {
      margin-bottom: 1px;
      font-size: 1.1em;
    }

    input[type="password"] {
      background-color: #000;
      color: #00ff66;
      border: 1px solid #FFFFFF;
      border-radius: 5px;
      padding: 8px;
      width: 200px;
      text-align: center;
      outline: none;
    }

    input[type="password"]:focus {
      box-shadow: 0 0 8px #00ff66;
    }

    button {
      margin-top: 15px;
      background-color: #FFFFFF;
      color: #000;
      border: 1px solid #FFFFFF;
      padding: 8px 16px;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.2s, color 0.2s;
    }

    button:hover {
      background-color: black;
      color: #fff;
    }

    .mensagem {
      margin-top: 15px;
      color: #FFFFFF;
      font-size: 0.9em;
    }
    
    .cursor {
  display: inline-block;
  width: 10px;       /* largura do cursor */
  height: 18px;      /* altura do cursor */
  background: #FFFFFF; /* cor do cursor (verde terminal) */
  margin-left: 3px;  /* espaçamento da letra anterior */
  animation: piscar 0.8s infinite; /* animação de piscar */
}

@keyframes piscar {
  0%, 50% {
    opacity: 1;
  }
  50.01%, 100% {
    opacity: 0;
  }
}

  .footer { color: black; margin-top: 30px; font-size: 9px; }
  