@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

html, body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #393939;
    font-family: 'Montserrat', sans-serif;
}

#logo-area {
    z-index: 0;
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    top: 80px;
}

#logo-area img {
    height: 80px;
    z-index: 0;
}

form {
    z-index: 1;
}

label {
    color: #7f1cb3;
    font-size: 14px;
}

.form-check {
    margin-bottom: 10px;
}

.painel-boas-vindas {
    -webkit-box-shadow: 0px -1px 15px -4px rgba(0,0,0,0.16); 
    box-shadow: 0px -1px 15px -4px rgba(0,0,0,0.16);
    padding: 40px;
    border-radius: 30px;
    background-color: #fff;
    font-size: 18px;
    text-align: left;
}

#proxima-btn, #finalizar-btn {
    text-decoration: none;
    border: none;
    border-radius: 17px;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #7f1cb3;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
}

#proxima-btn:hover, #finalizar-btn:hover {
    background-color: #751ca5;
}

#voltar-btn {
    text-decoration: none;
    margin-left: 5px;
    color: #7f1cb3;
    border: none;
    background-color: #fff;
}

#barra-area {
    display: flex;
    flex-direction: row;
    width: 200px;
}

#barra-area #barra-tracado {
    width: 200px;
    background-color: #ffff;
    height: 15px;
    border-radius: 50px;
    position: relative;
}

#barra-area #barra-preenchimento-area {
    width: 200px;
    position: absolute;
}

#barra-area #barra-preenchimento {
    width: 0%;
    background-color: #751ca5;
    height: 15px;
    border-radius: 50px;
    position: relative;
}

@media screen and (max-width: 600px) {
    #logo-area {
        position: absolute;
        top: 25px;
        /* display: none; */
    }
    
    #logo-area img {
        height: 80px;
    }

    main {
        position: absolute;
        top: 150px;
    }
}