* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    }
  
  /* Página */
  body {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    background: #f8f8f8;

    overflow-x: hidden;
    overflow-y: auto;

    padding: 20px;

    position: relative;
}
  
  /* Container principal */
  .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;
    z-index: 1;
}
  
  /* Logo */
  .logo-area {
  text-align: center;
  margin-bottom: 15px;
  }
  
  .logo-area img {
  width: 320px;
  max-width: 90%;
  }
  
  /* Card de login */
  .login-card {
    width: 100%;
    max-width: 500px;

    background: white;

    padding: 25px;

    border-radius: 18px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);

    margin: 0 auto;
}
  
  /* Título */
  .login-card h1 {
  text-align: center;
  
  ```
  color: #008f2f;
  
  margin-bottom: 10px;
  
  font-size: 34px;
  ```
  
  }
  
  .login-card h1::after {
  content: "";
  
  ```
  display: block;
  
  width: 90px;
  height: 4px;
  
  background: #d10000;
  
  margin: 10px auto;
  
  border-radius: 10px;
  ```
  
  }
  
  /* Subtítulo */
  .subtitulo {
  text-align: center;
  
  ```
  margin-bottom: 25px;
  
  color: #444;
  
  font-size: 16px;
  ```
  
  }
  
  /* Campos */
  .campo {
  margin-bottom: 18px;
  margin-top: 10px;
  }
  
  .campo label {
  display: block;
  
  ```
  margin-bottom: 8px;
  
  color: #008f2f;
  
  font-weight: bold;
  
  font-size: 18px;
  ```
  
  }
  
  /* Campo com ícone */
  .input-icon {
    
  position: relative;
  }
  
  .input-icon i:first-child {
  position: absolute;
  
  ```
  margin-right: 25px;
  margin-left: 10px;
  top: 50%;
  
  transform: translateY(-50%);
  
  color: #d10000;
  
  font-size: 18px;
  ```
  
  }
  
  .input-icon input {
  width: 100%;
  height: 50px;
  
  ```
  padding-right: 50px;
  
  border: 1px solid #d8d8d8;
  
  border-radius: 10px;
  
  font-size: 16px;
  padding-left: 40px;
  ```
  
  }
  
  .input-icon input:focus {
  outline: none;
  
  ```
  border: 2px solid #008f2f;
  ```
  
  }
  
  /* Ícone do olho */
  .mostrar {
  position: absolute;
  
  
  margin-right: 18px;
  margin-left: -30px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  cursor: pointer;
  }
  
  /* Botão */
  button {
  width: 100%;
  height: 50px;
  
  ```
  border: none;
  border-radius: 10px;
  
  background: #008f2f;
  
  color: white;
  
  font-size: 18px;
  font-weight: bold;
  
  cursor: pointer;
  
  transition: .3s;
  ```
  
  }
  
  button:hover {
  background: #006d24;
  }
  
  button i {
  margin-left: 8px;
  }
  
  /* Link */
  .esqueceu {
  display: block;
  
  ```
  text-align: center;
  
  margin-top: 20px;
  
  color: #d10000;
  
  text-decoration: none;
  
  font-size: 16px;
  ```
  
  }
  
  .esqueceu:hover {
  text-decoration: underline;
  }
  
  /* Faixa inferior */
  .background-verde {
  position: fixed;
  
  ```
  left: 0;
  bottom: 0;
  
  width: 100%;
  height: 50px;
  
  background: #0c8f0099;
  
  z-index: 0;
  
  display: flex;
  justify-content: center;
  align-items: center;
  ```
  
  }
  
  /* Créditos */
  .background-verde .creditos {
  color: white;
  
  ```
  text-align: center;
  
  font-size: 14px;
  
  line-height: 1.2;
  ```
  
  }
  
  .background-verde .creditos strong {
  font-weight: bold;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
  
  ```
  body {
      padding: 15px;
  
      /* espaço para a faixa inferior */
      padding-bottom: 70px;
  }
  
  .logo-area img {
      width: 250px;
  }
  
  .login-card {
      padding: 20px;
  }
  
  .login-card h1 {
      font-size: 28px;
  }
  
  .subtitulo {
      font-size: 14px;
 }
  .campo label {
      font-size: 16px;
  }
  
  .input-icon input {
      height: 45px;
  
      font-size: 15px;
  }
  
  button {
      height: 45px;
  
      font-size: 16px;
  }
  
  .background-verde {
      height: 45px;
  }
  
  .background-verde .creditos {
      font-size: 12px;
  }
  ```
  
  }
  