body {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    width: 100%;
}

.contenedor {
    width: 90%;
    margin: 40px auto;
    max-width: 1920px;
}

header {
    height: 180px;
}

header svg {
    width: 100%;
    transform: rotate(180deg);
}

section {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}

.formulario {
    width: 100%;
    position: relative;
}

.formulario__img {
    text-align: center;
}

.formulario__img .svg {
    font-size: 150px;
    color: #7F173495;
}

.formulario__grupo {
    width: 40%;
    margin: 20px auto;
}

.formulario__label {
    font-size: 18px;
    line-height: 18px;
    color: var(--color-red-P);
    margin-bottom: 20px;
    font-weight: bold;
}

.formulario__input {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    width: 100%;
    box-sizing: border-box;
    border: none;
    background: rgba(127, 23, 52, 0.15);
    padding: 10px 20px;
    margin-top: 10px;
    color: #545454;
}

.formulario__mensaje {
    display: none;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    color: #323232;
    transition: all .45s;
}

.formulario__mensaje-bold {
    color: var(--color-red-P);
}

.formulario__btn {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    background: none;
    padding: 0;
    border: none;
    color: var(--color-red-P);
    position: absolute;
    bottom: -42px;
    right: 80px;
}

.formulario__btn-next {
    margin-left: 10px;
}

@media only screen and (max-width: 900px) {
    header {
        height: 150px;
    }
    .contenedor {
        margin: 0px auto;
    }
    .formulario__grupo {
        width: 60%;
    }
}

@media only screen and (max-width: 600px) {
    header svg {
        height: 220px;
    }
    .formulario__img .svg {
        font-size: 130px;
    }
}

@media only screen and (max-width: 500px) {
    .formulario__grupo {
        width: 90%;
    }
    .formulario__btn {
        right: 0px;
    }
}