@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #081b29;
}
.container{
    position: relative;
    max-width: 900px;
    width: 100%;
    border-radius: 6px;
    padding: 30px;
    margin: 0 15px;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.container header{
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}
.container header::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 3px;
    width: 27px;
    border-radius: 8px;
    background-color: #081b29;
}
.container form{
    position: relative;
    margin-top: 16px;
    min-height: 330px;
    background-color: #fff;
    overflow: hidden;
}
.container form .form{
    position: absolute;
    background-color: #fff;
    transition: 0.3s ease;
}

.container form .titulo{
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    margin: 6px 0;
    color: #333;
}
.container form .campo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
form .campo .ci{
    display: flex;
    width: calc(100% / 3 - 15px);
    flex-direction: column;
    margin: 4px 0;
}
.ci label{
    font-size: 12px;
    font-weight: 500;
    color: #2e2e2e;
}
.ci input, select{
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    border-radius: 5px;
    border: 1px solid #aaa;
    padding: 0 15px;
    height: 42px;
    margin: 8px 0;
}
.ci input :focus,
.ci select:focus{
    box-shadow: 0 3px 6px rgba(0,0,0,0.13);
}
.ci select,
.ci input[type="date"]{
    color: #707070;
}
.ci input[type="date"]:valid{
    color: #333;
}
.container form button, .wb{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    max-width: 200px;
    width: 100%;
    border: none;
    outline: none;
    color: #fff;
    border-radius: 5px;
    margin: 25px 0;
    background-color: #081b29;
    transition: all 0.3s linear;
    cursor: pointer;
}
.container form .btt{
    font-size: 14px;
    font-weight: 400;
}
.sumbit:hover,
.endBtn:hover{
    background-color: #081b29;
}
form button i,
form #wb {
    margin: 0 6px;
}
form #wb {
    transform: rotate(180deg);
}
form .buttons{
    display: flex;
    align-items: center;
}
form .buttons button , .wb{
    margin-right: 14px;
}

.container #fim button{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    max-width: 200px;
    width: 100%;
    border: none;
    outline: none;
    color: #fff;
    border-radius: 5px;
    margin: 25px 0;
    background-color: #081b29;
    transition: all 0.3s linear;
    cursor: pointer;
}

.container #fim .btt{
    font-size: 14px;
    font-weight: 400;
}

#fim .buttons{
    display: flex;
    align-items: center;
}
#fim .buttons button , .wb{
    margin-right: 14px;
}

.container #fim .titulo{
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    margin: 6px 0;
    color: #333;
}

.container #fim .btt{
    font-size: 14px;
    font-weight: 400;
}

#fim p, #fim span {
    font-size: 1.02rem;
    color: #595959;
    padding: .5rem 0;
    
}

.sumbit:hover{
    background-color: #081b29;
}

#f2two,#endbttweb, #endbttapp, #website, #aplicativo,#zero_two, #fim{
    display: none;
}


@media (max-width: 750px) {
    .container form{
        overflow-y: scroll;
    }
    .container form::-webkit-scrollbar{
       display: none;
    }
    form .campo .ci{
        width: calc(100% / 2 - 15px);
    }
}
@media (max-width: 550px) {
    form .campo .ci{
        width: 100%;
    }
}