*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}

#alerta_erros_desktop {
    position: fixed;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.638);
    backdrop-filter: blur(2px);
    z-index: 999;
}


#box_container_erro_desktop {
    height: 25%;
    width: 40%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: #00c4cc 2px solid;
    border-radius: 15px;
}

#container-erro-desktop {
    overflow: hidden;
    height: 65%;
    width: 95%;
    background: #000;
}

#h2-erro-desktop {
    font-size: 1.8vw;
    font-weight: bold;
    color: #f01008;
}
#span-erro-desktop {
    font-size: 1vw;
    color: #fff;
}
#btnFecharErro-desktop {
    all: unset;
    width: 8vw;
    color: #fff;
    height: 2.1vw;
    border: #00c4cc 1px solid;
    text-align: center;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.2s ease;
}

#btnFecharErro-desktop:hover {
    background: #00c4cc;
    color: #000;
}

#mainDesktop {
    height: 100vh;
    width: 100%;
    display: flex;
}

#subcontainer_main_desktop {
    margin-top: 10vh;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

.container-main-desktop {
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.container-main-desktop:nth-child(2) {
    background: url("../../../Assets/Elements/img_cadastro_desktop.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}


#subcontainer-desktop-head {
    height: 10%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#a_voltar_desktop {
    cursor: pointer;
}

#img-voltar-desktop {
    width: 1.8vw;
    margin-left: 2.5vw;
}

#img-logo-desktop {
    width: 6vw;
    margin-right: 2.5vw;
}

#subcontainer-desktop-info {
    height: 90%;
    width: 100%;
}

#box-desktop-info {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

#h1-desktop {
    color: #000;
    font-size: 3.4vw;
    font-weight: 300;
    text-align: center;
}

#subox-desktop-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}


#container-forms-desktop {
    width: 90%;
    height: 80%;
    overflow-x: hidden;
    overflow-y: auto;
}

#form-login-empresa-desktop {
    height: 90%;
    width: 100%;
    color: #000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    overflow-x: hidden;
}

#subox-desktop-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}


.container-ipt-desktop {
    height: 12%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    margin-top: 3%;
}


.label-ipt-desktop {
    float: left;
    color: #000;
    font-size: 0.9vw;
}

.ipt_style_desktop {
    all: unset;
    width: 100%;
    background: #f2f4f8;
    text-align: start;
    height: 60%;
    border-bottom: #dcdfe2 1.5px solid;
    padding-left: 1vw;
    color: #000;
    font-size: 0.85vw;
}


.btn_style-form-desktop {
    all: unset;
    margin-top: 3%;
    height: 7%;
    color: #fff;
    width: 100%;
    background: #00c4cc;
    cursor: pointer;
    transition: 0.2s ease;
    text-align: center;
}

.btn_style-form-desktop:hover {
    background: #00a9ae;
}