body {
    font-family: Arial, sans-serif;
    background-image: url('img/bg.png'); /* Substitua 'caminho/para/sua/imagem.jpg' pelo caminho real da sua imagem */
    background-size: cover; /* Para cobrir todo o elemento body */
    background-repeat: no-repeat; /* Evita repetir a imagem */
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
}

form {
    text-align: left;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-width: 100%; /* Adicione esta linha para limitar a largura máxima */
}

button {
    background-color: #fff;
    color: #b556ef;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #fff;
    color: #b556ef;
}

#mensagem {
    color: #fff;
    margin-top: 300px;
    position: absolute;
}

.pergunta {
    margin-top: 400px;
}

#pergunta-text {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
    word-wrap: break-word;
    max-width: 500px;
}

#btn-inicio {
    margin-top: 800px;
    margin-left: 485px;
    background-color: #fff;
    color: #b556ef;
}

#respostas {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: space-evenly;
    align-items: flex-start;
    display: inline-block;
    font-size: 30px;
    padding-top: 35px;
}

#respostas label {
    margin-bottom: 25px;
    color: #FFF;
    display: inline-block;
}

#respostas input[type="radio"] {
    margin-right: 15px;
    width: 30px;
    height: 23px;
}

.qrcode {
    max-width: 100%;
    display: flex;
    justify-items: center;
    margin-top: 243px;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
}


.btn-proximo {
    background-color: #fff;
    color: #b556ef;
}


@media (max-width: 1536px) {
    .container {
        max-width: 400px;
    }
}
