@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;700&display=swap');

body {
    font-family: 'League Spartan', sans-serif;
    background-color: #f2edff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.form-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 400px;
    position: relative;
}

/* Estilização da imagem do logo */
.logo-pandazap {
    width: 150px;
    margin-bottom: 10px;
}

h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Alinhamento correto das perguntas */
label {
    font-size: 19px;
    color: #333;
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: normal;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

/* Ajuste do campo de preenchimento */
input {
    width: 85%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 20px; /* Aumentado o espaço entre input e botões */
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

input:focus {
    border-color: #8c52ff;
}

/* Alinhamento correto dos botões */
.button-group {
    width: 85%;
    display: flex;
    margin-left: 30px;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

/* Ajuste para o botão "Próximo" na primeira pergunta */
.step-1 .button-group {
    justify-content: flex-end;
}

/* Estilização dos botões */
button {
    background-color: #8c52ff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    width: 120px;
    text-align: center;
}

button:hover {
    background-color: #732dcc;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Correção do alinhamento da tela final */
#messageFinal {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
}

.final-message-img {
    max-width: 90%;
    max-height: 90vh;
    display: block;
}
