body {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

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

.progress-bar {
    width: 100%;
    background-color: #f3f3f3;
    margin: 20px 0;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar span {
    position: absolute;
    width: 100%;
    text-align: center;
    color: white;
    font-weight: bold;
}


.progress {
    width: 0;
    height: 100%;
    background-color: #4caf50;
    transition: width 0.3s;
    height: 30px;
    align-content: center;
    border-radius: 5px;
    color: white;
    font-size: 20px;
}

.result-bar {
    width: 100%;
    height: 20px;
    background-color: #f3f3f3;
    display: flex;
    justify-content: space-between;
}

.fixed, .growth {
    width: 48%;
    position: relative;
}

.fixed div, .growth div {
    height: 100%;
}

.fixed div {
    background-color: red;
}

.growth div {
    background-color: green;
}

.fixed span, .growth span {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 25px;
    left: 0;
}

#question-container p {
    font-size: 18px;
    margin-bottom: 20px;
}

#question-container label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

button {
    background-color: #76c7c0;
    color: #fff;
    border: none;
    padding: 10px 35px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 22px;
    margin: 20px;
}

button:hover {
    background-color: #5aa8a3;
}

.bar-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

label {
    display: block;
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
}

p.texto {
    background-color: antiquewhite;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
}

/* Estilos para o container de opções */
.option-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Estilos para cada opção */
.option {
    width: 100%;
    margin-bottom: 10px;
}

/* Estilos para desktop */
@media (min-width: 768px) {
    .option {
        width: 48%;
    }
}


/* Estilo para os botões no mobile - empilhados */
@media (max-width: 768px) {
    #controls {
        flex-direction: column;
        align-items: center;
    }

    #controls button {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px; /* Espaço entre os botões no mobile */
    }
    #printButton {
        display: none;
    }
}




/* Estilo para os botões no desktop - em linha */
#controls {
    display: flex;
    justify-content: center;
    gap: 15px; /* Espaço entre os botões */
}

#controls button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background-color: #4CAF50;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#controls button:hover {
    background-color: #45a049;
}


/* Container para o rótulo e o botão de envio */
.email-container {
    
    align-items: center; /* Alinha os itens ao centro verticalmente */
    gap: 10px; /* Espaçamento entre os elementos */
    margin-top: 20px; /* Espaçamento superior para separar do conteúdo anterior */
}

/* Estilos específicos para o rótulo de e-mail */
.email-label {
    font-size: 16px; /* Tamanho da fonte */
    font-weight: normal; /* Peso da fonte */
    color: #000; /* Cor do texto */
    background: none; /* Remove qualquer fundo */
    border: none; /* Remove qualquer borda */
    padding: 0; /* Remove padding se houver */
    margin: 0; /* Remove margin se houver */
    display: inline-block; /* Garante que o rótulo fique em linha */
}

/* Estilizar o botão */
.email-container button {
    background-color: #76c7c0; /* Cor de fundo */
    color: white; /* Cor do texto */
    border: none; /* Sem borda */
    padding: 10px 20px; /* Espaçamento interno */
    text-align: center; /* Alinhamento do texto */
    text-decoration: none; /* Sem sublinhado */
    display: inline-block; /* Exibição em linha */
    font-size: 16px; /* Tamanho da fonte */
    margin: 4px 2px; /* Margem */
    cursor: pointer; /* Cursor de ponteiro */
    border-radius: 5px; /* Bordas arredondadas */
}

/* Estilizar o campo de entrada */
.email-container input[type="email"] {
    padding: 10px; /* Espaçamento interno */
    font-size: 16px; /* Tamanho da fonte */
    border: 1px solid #ccc; /* Borda */
    border-radius: 5px; /* Bordas arredondadas */
}


.fixed-mindset {
    background-color: red;
}

.growth-mindset {
    background-color: green;
}

/* Estilos para as barras de resultado */
.result-bar {
    display: flex;
    width: 100%;
    justify-content: space-around;
    margin-bottom: 20px;
}



