html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  .background {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: black;
    z-index: -1;
  }
  
  .background::after {
    display: flex;
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #BF15BC;
    z-index: -1;
  }
  
  body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    text-align: center;
  }
  
  h1, h2 {
    color: #ffffff;
  }
  
  form {
    align-items: center;
    width: 300px;
    margin: 0 auto;
  }
  
  label {
    display: block;
    margin-top: 20px;
    font-size: 1.1em;
    color: #ffffff;
  }
  
  input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
  }
  
  input[type="submit"] {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  input[type="submit"]:hover {
    background-color: #000000;
  }
  
  table {
    margin: 50px auto;
    width: 40%;
    border-collapse: collapse;
  }
  
  th, td {
    display: row;
    align-items: center;
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgb(255, 255, 255);
}
  
th {
    background-color: #FFDE59;
    color: #000000;
}
  
  tbody {
    background-color: #38BDD7;
    color: #000000;
  }
  
  .responsive-image {
    max-width: 100%;
    height: auto;
  }
  
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer img {
    width: 30px; /* Defina o tamanho do ícone conforme necessário */
    vertical-align: middle;
    margin-left: 10px; /* Adicione margem à esquerda para separar o texto e o ícone */
}