*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #237f81;
    display: flex;
    justify-content: center;
}

body:after {
    content: " ";
    width: 100%;
    background-color: #f8f8f8;
    height: 100%;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: -1;
    background-attachment: fixed;
    background-image: url(../img/log-in-ba.jpg);
    opacity: 0.2;
}

.div-registro{
    backdrop-filter: blur(5px);
    border-radius: 1cap;
    box-shadow: 1px 1px 10px rgb(46, 46, 46);
    padding: 2.5vh;
    display: flex;
    flex-direction: column;
    /* gap: 2.5vh; */
    position: absolute;
    width: 70vw;
    /* height: 70%; */
    top: 10vh;
    /* border: solid 2px white; */
}

.div-superior{
    display: flex;
    /* justify-content: center; */
    padding-left: 40%;
    gap: 2.5vh;
    align-items: center;
    color: white;
}

form{
    display: flex;
    flex-direction: column;
    /* padding: 2.5vh; */
}

.registrarse{
    width: fit-content;
    padding: 1vh;
    border-radius: .5cap;
    margin: 0 auto;
    font-size: 2vh;
    border: none;
    font-weight: 200;
    color: white;
    background-color: #fc4c04;
    box-shadow: 1px 1px 10px rgb(73, 73, 73);

    &:hover{
        cursor: pointer;
        background-color: #b93603;
        box-shadow: 1px 1px 10px rgb(51, 51, 51);
        /* scale: 1.05; */
    }
}


.campos{
    display: flex;
    flex-direction: column;
    gap: 5vh;
    flex-wrap: wrap;
    /* background-color: white; */
    border-radius: .8cap;
    justify-content: center;
    padding: 2.5vh;
}

.datos-personales, .datos-usuario{
    border-radius: 1cap;
    background-color: white;
    height: fit-content;
    border: solid 1px #d9dfdf;
    box-shadow: 1px 1px 10px rgb(48, 48, 48);
    padding: 2.5vh 0;
    /* width: 40%; */
    display: flex;
    flex-direction: column;
    align-content: center;
    gap: 1vh;
}

.datos-usuario{
}

.titulo-campo{
    text-align: center;
    font-size: 2.5vh;
    font-weight: 600;
    color: #fc4c04;
    margin: 0;
}

.datos{
    display: flex;
    /* flex-direction: column; */
    /* justify-content: center; */
    width: 100%;
    flex-wrap: wrap;
    /* border: solid 1px grey; */
    padding: 1vh;
    gap: 1.5vh;
    color: #237f81;
}

.dato{
    display: flex;
    width: 40%;
    justify-content: right;
    gap: 2.5vh;

    input{
        border-radius: .5cap;
        width: 50%;
        border: solid 1px #c6d3d3;
    }

    select{
        border-radius: .5cap;
        width: 50%;
        border: solid 1px #c6d3d3;
    }
}



/* registro ok */
.div-registro-registro-ok{
    backdrop-filter: blur(5px);
    border-radius: 1cap;
    box-shadow: 1px 1px 10px rgb(46, 46, 46);
    padding: 2.5vh;
    display: flex;
    flex-direction: column;
    /* gap: 2.5vh; */
    position: absolute;
    width: 40vw;
    /* height: 65vh; */
    top: 10vh;
    /* border: solid 2px white; */
}

.div-superior-registro-ok{
    display: flex;
    /* justify-content: center; */
    padding-left: 40%;
    gap: 2.5vh;
    align-items: center;
    color: white;
}

.div-contenido-registro-ok{
    display: flex;
    background-color: white;
    border-radius: .8cap;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 2.5vh;
    margin-top: 2.5vh;
}
.h4-registro-ok{
    font-size: 4vh;
    font-weight: 200;
    color: #237f81;
    text-align: center;
}

.link-registro-ok{
    text-decoration: none;
    color: #fc4c04;
    font-weight: 600;
    /* text-align: center; */

    &:hover{
        cursor: pointer;
        text-decoration: underline;
    }
}