
.bolsa-laboral{
    width: 600px;
    margin: 0 auto;
    padding: 2rem;
    box-shadow: 1px 2px 5px rgba(39, 223, 32, .5);
    border-radius: 25px;
}

.radios_cont{
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.radio_form{
    border: 2px solid #666;
    padding: .5rem;
    border-radius: 15px;
}
.l_radio{
    cursor: pointer;
}

.bolsa-laboral>input{
    border: 2px solid #666;
}

.login-input{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input[name="usuario"], input[name="password"]{
    margin: 0 auto;
    width: 350px;
    border: 2px solid #666;
    border-radius: 15px;
    padding: .5rem;
    padding-left: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    outline: none;
}

#btn_ingresar{
    border: none;
    border-radius: 25px;
    padding: 1rem;
    width: 200px;
    font-size: 1rem;
    background-color: green;
    color: #fff;
    margin: 0 auto;
    cursor: pointer;
    transition: all .3s;
    font-weight: 600;
}

#btn_ingresar:hover{
    background-color: rgba(39, 223, 32);
}

/*---BOLSA LABORAL- SESSION INICIADA---*/

.usuario-perfil{
    width: 100%;
    height: 400px;
    position: relative;
    text-align: center;
    background-color: rgba(0,0,0,.2);
}
.usuario-perfil>img{
    height: 100%;
}
.perfil-usuario-img{
    border: 4px solid #fff;
    background-color: rgba(0,0,0,.2);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    bottom: -25%;
    left: 10px;
}
.perfil-usuario-img>img{
    width: 80%;
}
.usuario-info{
    padding: 2rem 2rem 2rem 220px;
    height: 100px;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.usuario-info>h2{
    color: #666;
}
#usuario-config{
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all .3s;
}
#usuario-config:hover{
    color: rgba(0,0,0,.4);
}

.session-close-cont{
    visibility: hidden;
    opacity: 0;
    background-color: #fff;
    box-shadow: 1px 2px 5px rgba(174, 219, 173, 0.5);
    position: absolute;
    right: 0;
    top: 70%;
    padding: 1rem;
    color: #666;
    font-weight: 600;
    border-radius: 15px;
    transition: all .3s;
}
.session-close-cont>p{
    font-size: 1rem;
    cursor: pointer;
    transition: all .3s;
}
.session-close-cont>p:hover{
    color: orange;
}
#usuario-config:hover>.session-close-cont{
    visibility: visible;
    opacity: 1;
}

.usuario-nav{
    background-color: #666;
    width: 100%;
    padding: 1rem 1rem 1rem 2rem;
}
.usuario-nav>ul{
    display: flex;
    gap: 1rem;
    color: #fff;
    font-weight: 600;
}
.usuario-nav>ul>li{
    padding: .5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 10px;
    transition: all .3s;
}
.usuario-nav>ul>li:hover{
    cursor: pointer;
    color: orange;
}
.usuario-nav>ul>li:first-child{
    background-color: cornflowerblue;
}

.negativo{
    padding: 1rem;
    background-color: rgba(216, 115, 108, 0.3);
    color: #fff;
    border-radius: 10px;
    color: red;
    font-weight: 600;
    margin-bottom: 2rem;
}