/* Definir a cor de fundo e o estilo da página */
body {
    background-color: #ffffff; 
    color: #fff; 
    font-family: Arial, Helvetica, sans-serif
}

/* Estilizar o contêiner principal */
.container {
    width: 50%;
    height: auto;
    margin: 0 auto;
    padding: 20px;
    background-color: #1d357f; 
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Títulos do formulário */
h1, h2 {
    color: #fff; 
    text-align: center;
    font-size: 1.5em;
}

.whatsapp-btn {
    display: inline-flex;
      align-items: center;
      background-color: #25D366;
      color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 30px;
      font-size: 16px;
      font-weight: bold;
      text-decoration: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
  }

  .whatsapp-btn:hover {
    background-color: #1ebe5a;
  }

  .whatsapp-btn img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }


/* Estilização de todos os inputs e selects */
input[type="text"], input[type="email"], input[type="file"], textarea, select {
    width: 100%;
    padding: 10px;
    margin: 10px 0 20px;
    background-color: #ffffff; 
    color: #000000; 
    border: 1px solid #555;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Estilo para o botão de envio */
button[type="submit"] {
    background-color: #254ec9; 
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1.2em;
}

/* Estilo para hover no botão de envio */
button[type="submit"]:hover {
    background-color: #182c6b;
}

/* Estilo para os rótulos (labels) */
label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

/* Estilo para as perguntas com múltipla escolha */
input[type="radio"], input[type="checkbox"] {
    margin-right: 10px;
}



/* Estilo para mensagens de aviso */
.alerta-erro {
    color: red;
    font-weight: bold;
}

.alerta-sucesso {
    color: #59a752;
    text-align: center;
}

/* Estilizar o texto de instrução no topo */
.instrucoes {
    background-color: #1d357f;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #ffcc00;
    font-size: 1em;
}

span{
    color: #ff0000;
}
.container .quadradinho{
    background-color: #ffffff;
    border-radius: 10px;
   
}
.container .quadradinho .texto {
    width: 100%;   
    height: 100%; 
    padding: 5px; 
    color: black;
    font-weight: bold;
    box-sizing: border-box;
}

.tam-caixa{
    width: 100%;   
    height: 200px; 
    font-size: 17px;
    resize: none; 
}

.botao{
    width: 100px;
    height: 100px;
    margin-top: 8px;
}

@media (max-width: 768px) {
    
    body {
        font-size: 0.9em; 
    }

   
    .container {
        width: 90%; 
        padding: 15px; 
        border-radius: 8px;
    }

   
    h1, h2 {
        font-size: 1.2em; 
    }

  
    input[type="text"], input[type="email"], input[type="file"], textarea, select {
        font-size: 0.9em; 
        padding: 8px; 
    }

    
    button[type="submit"] {
        font-size: 1em; 
        padding: 10px 15px; 
    }

  
    .captcha input {
        width: 80%; 
    }

  
    .instrucoes {
        font-size: 0.9em; 
    }


    .container .quadradinho {
        padding: 10px;
    }

    .tam-caixa {
        height: 150px; 
        font-size: 16px; 
    }

   
    .botao {
        width: 80px; 
        height: 80px;
    }
}


