.input {
    width: 700px;
    height: 90px;
    background-color: #FFF;
    outline: none;
    border: none;
    position: absolute;
    left: 190px;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 20px;
    font-size: 28px;
    font-family: 'Poppins Semibold';
}

#btnContinuar {
    left: 360px;
    top: 1250px;
}

.input.valid {
    border: 3px solid #028055;
}

.input.invalid {
    border: 3px solid #dc3545;
}

#txt-termos {
    width: 600px;
    position: absolute;
    left: 300px;
    top: 1040px;
    font-size: 26px;
    line-height: 28px;
    color: #3e3f3e;
    font-family: 'Poppins Semibold';
    cursor: pointer;
}

.bar-popup {
    width: 1080px;
    height: 70px;
    background-color: #028055;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    box-sizing: border-box;
    padding-right: 5px;
    text-align: right;
    cursor: pointer;
}

#popup-termos > iframe {
    background-color: #028055;
}

#popup-termos.show {
    display: flex;
}

#popup-termos {
    width: 1080px;
    height: 1920px;
    background-color: rgba(0,0,0, .8);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2000;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}