body {
    font-family: Arial, sans-serif;
    font-size: 100%;
    background-color: #C34B02;
    margin: 0;
    padding: 0;
  }

  .logo{
    width: 30%;
  }
  
  .titlecontainer {
    color: #00000096;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .title {
    color: #C34B02;
    font-size: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .container {
    background-color:#FFFFFF;
    width: 90%;
    max-width: 100%;
    margin: 2rem auto;
    color: #0000;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
  }
  
  h1 {
    margin-bottom: 10px;
  }
  
  form label {
    display: block;
    margin-top: 1%;
  }
  
  legend {
    color: #C34B02;
  }

  input[type="text"],
  input[type="number"],
  textarea {
    width: 100%;
    max-height: 5%;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box;
    border: 2px solid #C34B02; /* Borda sólida laranja */
    border-radius: 5px;         /* Cantos arredondados (opcional) */
    background-color: #ffffffcb;
  }

  input[type="checkbox"],
input[type="radio"] {
    accent-color: #C34B02; /* Muda a cor do quadradinho/botão diretamente */
}

  
  textarea {
    resize: vertical;
  }
  
  fieldset {
    border: 1px solid #ccc;
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
  }
  
  legend {
    font-size: 1rem;
    font-weight: bold;
  }
  
  button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 2rem;
    background: #C34B02;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  button:hover {
    background: #c96324;
    color: #ffffff;
  }

  .sendbutton {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ccc;
  }

  .sendimage {
    width: 35%;
    border-radius: 2%;
  }

  .formulario {
    color: #000000;
    border-color: #C34B02;
  }

  input {
    background-color: #ffffffcb;
  }