#mainTitleContainer {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: radial-gradient(263.7% 106.65% at 71.66% 56.15%,
            #f01e0f 0%,
            #740800 100%);
    color: white;
    font-size: 22px;
    text-align: center;
    padding: 100px 0 120px;
}

.circle-yellow {
    position: absolute;
    right: 0;
    bottom: 0;
}

.circle-white {
    position: absolute;
    left: 0;
    top: 0;
}

h1 {
    font-size: 30px;
    color: white;
    max-width: 900px;
    margin: auto;
}



.container {
    width: 70%;
    margin: 0px auto;
    position: relative;
    overflow: hidden;
    height: auto;
    border-radius: 15px;
    border: 1px solid #d9d9d9;
    background: #fff;
    top: -30px;
}

.contentContainer {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30pxn 0;
}

#firstFormContainer {
    margin-top: 30px;
}

.checkBoxContainer {
    background-color: whitesmoke;
}

.container input,
select,
.checkBoxContainer,
textarea {
    position: relative;
    width: calc(48% - 15px);
    margin-top: 20px;
    text-align: left;
    padding-left: 15px;
    height: 53px;
    line-height: 53px;
    border-radius: 4px;
    border: 0.5px solid rgba(0, 0, 0, 0.5);
    background: #fff;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
}

textarea {
    resize: none;
}

select {
    width: 100%;
}

.checkBoxContainer {
    width: 95%;
    margin-bottom: 50px;
}

.formContainer {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin: 20px auto 40px auto;
}

#enviar,
#continue {
    margin-bottom: 40px;
    color: white;
    background: #ff0000;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 13px 50px;
    text-align: center;
}


.submitNumberTitle {
    font-size: 21px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
    margin-top: 60px;
}

.submitNumberSubtitle {
    text-align: center;
    max-width: 600px;
    line-height: 20px;
    margin: 20px auto 0;
    font-size: 13px;
}

#acreditarme {
    color: white;
    background: #ff0000;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 13px 50px;
    text-align: center;
    margin-bottom: 40px;
}


@media (orientation: portrait) and (max-width: 1000px) {
    .container{
        width: 90%;
    }
    .formContainer {
        flex-direction: column;
    }

    .container input,
    select,
    .checkBoxContainer,
    textarea {
        width: calc(100% - 16px);
    }
    .submitNumberSubtitle, h1{
        width: 90%;
    }
    h1{
        font-size: 25px;
    }
}