body {
    font-family: Arial, sans-serif;
    background-color: #804000; /* Cor de fundo marrom */
    color: #fff; /* Cor da fonte branca */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #f2ff04;
    -webkit-text-stroke-width: 1.2px;
    -webkit-text-stroke-color: #000;
  }
  
  form {
    background-color: #C08040; /* Cor de fundo marrom claro */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    
  }
  
  label {
    display: block;
    margin-bottom: 5px;

  }
  
  input[type="text"] {
    width: 100%;
    padding: 5px;
    margin-bottom: 15px;
    border: none;
    background-color: #F0E68C; /* Cor de fundo bege claro */
    border-radius: 5px;
    box-shadow: 5px 5px 10px;
  }
  
  input[type="text"]:readonly {
    background-color: #E6E6FA; /* Cor de fundo cinza claro */
  }
  
  button {
    background-color: #000; /* Cor de fundo preta */
    color: #fff; /* Cor da fonte branca */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #555; /* Cor de fundo cinza escuro ao passar o mouse */
  }