﻿body {
    font-family: "Arial Rounded MT", Arial, sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding-left: 0px;
    padding-right: 0px;
}

h3 {
    text-align: center;
}
    h3#avaliacaoTitulo {
        background-color: #e56c41;
        border-radius: 10px;
        padding: 1px 10px;  
        color: white;
        display: inline-block;
    }

p {
    text-align: justify;
    margin-bottom: 20px;
}

    p#avaliacaoDescricao {
        background-color: #e56c41;
        border-radius: 15px;
        padding: 0px 10px;
        color: white;
        display: inline-block;
    }

.form-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.form-column {
    flex-basis: 50%;
}
@media (max-width: 710px) {
    .form-column {
        flex-basis: 100%;
    }
}
    .form-column.direita {
        overflow: hidden;
        padding: 0 20px;
        display: flex;
        align-items: center;
        background-color: #e56c41;
        border-radius: 20px;
        color: white;
        margin-top: 3px;
        margin-bottom: 15px;
        margin-right: -35px;
        padding-right: 10px;
        box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.3);
    }
    @media (max-width: 710px) {
        .form-column.direita {
            display: none;
        }
    }

.dados-direita {
    display: flex;
    align-items: center;
    margin-bottom: -13px; /* Remova qualquer espaçamento definindo a margem como zero */
}

    .dados-direita span {
        margin-right: 10px; /* Adicione a margem desejada entre o span e o label */
    }


.imagem-esquerda {
    float: left;
    width: 80px;
    height: 70%;
    margin-right: 10px;
}

    .imagem-esquerda img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


form {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    padding: 10px;
    box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.3);
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

input[type="checkbox"] {
    margin-right: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
}

.avaliacaoDados {
    border-radius: 12px;
    border: 2px solid #e56c41;
    padding: 3px;
}

    .avaliacaoDados::placeholder {
        color: darkgray; /* Defina a cor desejada para o texto do placeholder */
    }

.dados {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 10px;
}
    .dados.esquerda {
        margin-right: 40px;
    }

    .dados.direita {
        margin-left: 40px;
    }

.fa {
    margin-right: 10px; /* Adicione a margem desejada */
    color: #e56c41; /* Defina a cor desejada para o ícone */
}
.fa-white {
    color: white; /* Defina a cor desejada para o segundo ícone */
}

.pergunta {
    background-color: #e56c41;
    border-radius: 12px;
    padding: 0px 10px;
    color: white;
    padding-bottom: 2px; /* Adicione o espaçamento interno desejado em pixels */
    margin-bottom: 20px; /* Adicione o espaçamento desejado em pixels */
    box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.3);
}

.borda-vermelha {
    border: 2px solid #000;
    border-color: #ff0000;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    input[type="submit"]:hover {
        background-color: #45a049;
    }


input[type="radio"] {
    appearance: none; /* Remove o estilo padrão do radio button */
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 15px;
    height: 15px;
    border: 2px solid white; /* Define a borda branca */
    border-radius: 50%; /* Arredonda a forma do radio button */
    background-color: transparent; /* Define o fundo transparente */
    outline: none; /* Remove o contorno ao receber foco */
}

    input[type="radio"]:checked {
        background-color: white; /* Define o fundo branco quando selecionado */
    }

input[type="checkbox"] {
    appearance: none; /* Remove o estilo padrão do checkbox */
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 15px;
    height: 15px;
    border: 2px solid white; /* Define a borda branca */
    background-color: transparent; /* Define o fundo transparente */
    outline: none; /* Remove o contorno ao receber foco */
}

    input[type="checkbox"]:checked {
        background-color: white; /* Define o fundo branco quando selecionado */
    }

textarea {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #eecc81;
    resize: vertical; /* Permite o redimensionamento vertical */
    overflow: hidden; /* Oculta a barra de rolagem */
    color: white;
}

    textarea:focus {
        outline: none;
        border-top: none;
        border-right: none;
        border-left: none;
    }
    textarea::placeholder {
        color: #eecc81; /* Defina a cor desejada para o texto do placeholder */
    }

.btn {
    background-color: #e56c41;
    border: 1px solid #e56c41;
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
    transition: background-color 0.3s, border-color 0.3s;
}
    .btn:hover {
        background-color: #eecc81;
        border-color: #eecc81;
        color: white;
    }