@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.boxaccount {
    width: 100%;
    height: 100vh;
    background-color: white;
    overflow: auto;
}



.formnewaccount {
    width: 90%;
    max-width: 900px;
    margin: auto;
    border-radius: 4px;
    background-color: white;
    display: flex;
    padding: 25px;
    flex-direction: column;
    position: relative;
    box-sizing: border-box;
}


.inf {
    display: flex;
    padding-right: 10px;
}

.indicatorStep {
    margin-top: 10px;
    color: rgb(53, 53, 53);
    font-family: 'Onest', sans-serif;
    padding: 5px 0px;
    margin-bottom: 10px;
    font-weight: 500;
    border-bottom: solid 1px #8282826e;
}


.contentAccount input,
.contentAccount select {
    width: 100%;
    position: relative;
    outline: none;
    padding: 5px 10px;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.545);
    transition: 0.5s;
    margin-bottom: 10px;
}

.contentAccount select option {
    background-color: #00b6fe;
}


.contentAccount input:focus {
    border: 1px solid rgb(0, 169, 239);
}

.inf2_1 {
    display: flex;
    margin-bottom: 20px;
}

.concordo {
    display: flex;
    width: 100%;
    align-items: center;
}


.text {
    display: flex;
    margin-left: 10px;

}

.text a {
    padding: 2px;
    margin-left: 6px;
    text-decoration: none;
    color: rgb(7, 179, 253);
}


.linktologin {
    font-family: 'Onest', roboto;
    color: rgb(0, 60, 239);
    text-decoration: none;
}

.input {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 15px;
}

.input input {
    /* height: ; */
    padding: 7px 40px;
    padding-left: 50px;
    background-color: transparent;
    border: 1px solid rgb(118, 118, 118);
    border-radius: 2px;
    outline: none;
    z-index: 2;
    transition: 0.3s;
}

.input span {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6.5px;
    border-radius: 5px 0px 0px 5px;
    /* background-color: #00b6fe; */
    color: blue;
    font-family: roboto;
    font-size: 0.9em;
}

.formnewaccount .error-config {
    width: 100%;
    background-color: rgba(255, 0, 0, 0.204);
    border: none;
    border-radius: 2px;
}

.boxverifyemail {
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-verfyemail {
    background-color: white;
    width: 90%;
    max-width: 500px;
    padding: 2px 2px 10px 2px;
    border-radius: 2px;
}

.content-verfyemail .dadosEmpresa {
    margin-top: 0px;
    text-align: center;
}

.content-verfyemail .label-account {
    font-size: 0.9em;
    padding: 0px 10px;
}

.content-verfyemail .dadosEmpresa .label-account {
    margin-top: 10px;
    font-size: 1em;
    font-family: Poppins;
}

.content-verfyemail .default-btn {
    width: 270px;
    margin: auto;
    margin-top: 10px;
}

/* MEDIAS */

@media (max-width: 800px) {

    .formnewaccount h1,
    .formnewaccount h2 {
        text-align: center;
    }
}