body {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100vh;
    background: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('./bg.png');
    background-repeat: no-repeat;
    background-size: cover;
}

section#inputs {
    width: 600px;
    margin: 80px auto 0;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}

section#inputs h2 {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

section#inputs span {
    font-size: 16px;
}

section#inputs .form {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
}

section#inputs .form .input-control {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

section#inputs .form .input-control label {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
}

section#inputs .form input {
    height: 46px;
    border: solid 2px #3453C0;
    border-radius: 5px;
    font-size: 18px;
    padding: 0 10px;
    margin-bottom: 5px;
}

section#inputs .comecar {
    width: 200px;
    margin: 20px auto 0;
    height: 52px;
    background-color: #3453C0;
    border: none;
    color: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

section#question {
    width: 800px;
    margin: 80px auto 0;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}

section#question h2 {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

section#question h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

section#question .questions {
    display: flex;
    flex-direction: column;
}

section#question .questions .question {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

section#question .questions .question .number {
    height: 55px;
    width: 55px;
    background-color: #3453C0;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

section#question .questions .question .ask {
    height: 55px;
    width: calc(100% - 55px);
    padding: 0 10px;
    background-color: #E5E5E5;
    font-size: 18px;
    line-height: 22px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}

section#question .questions .question .ask.selected {
    background-color: #9ede96 !important;
}

section#question .navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

section#question .navigation span {
    font-size: 20px;
}

section#question .navigation button {
    width: 150px;
    height: 41px;
    background-color: #3453C0;
    color: #fff;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

section#question .navigation button.disabled {
    background: #dcdcdc;
    border: solid 2px #dcdcdc;
    pointer-events: none;
}

section#resultado {
    width: 800px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}

section#resultado .qrPlace {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section#resultado h2 {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

section#resultado h3 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 10px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

section#resultado .qrCode {
    display: flex;
    align-items: center;
    justify-content: center;
}

section#resultado .qrCode .resultImage {
    margin-right: 40px;
}

section#resultado .recomecar {
    width: 200px;
    margin: 30px auto 0;
    height: 52px;
    background-color: #3453C0;
    color: #fff;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.input-control {
    display: flex;
    flex-direction: column;
}

.input-control input {
    border: 2px solid #f0f0f0;
    border-radius: 4px;
    display: block;
    font-size: 12px;
    padding: 10px;
    width: 100%;
}

.input-control input.fieldError {
    border: 2px solid #ff3860 !important;
}

.input-control input.fieldSuccess {
    border: 2px solid #09c372 !important;
}

.input-control input:focus {
    outline: 0;
}

.input-control.success input {
    border: 2px solid #09c372;
}

.input-control.error input {
    border: 2px solid #ff3860;
}

.input-control .error {
    color: #ff3860;
    font-size: 12px;
    height: 12px;
}