.logo{
    min-width: 300px !important;
    margin-top: 50px !important;
}





h1{
    font-size: clamp(20px, 2vw, 35px);
    font-weight: 400;
}

/* h2{
    font-size: clamp(17px, 2vw, 30px);
    font-weight: 600;
}

h3{
    font-size: clamp(16px, 2vw, 20px);
} */

p{
    font-size: clamp(15px, 2vw, 25px);
}





.container {
    margin: 0 auto;
    width: 80%;
}

.centrarEjeX{
    text-align: center;
}

.grid{
    display: grid;
}

/* ******************************************* FORMAS DECORATIVAS ********************************************************* */

/* .circle0{
    position: absolute;
    z-index: -99999;
    top: -62vh;
    left: 0px;
    background-color: var(--lilaClaro);
    width: 100%;
    height: 90vh;
    border-radius: 50%;

} */


/* BOTON PRINCIPAL */

.btn_default{
    background-color: var(--lila);
    border: solid 1px var(--lila);
    color: var(--blanco);
    border-radius: 33.33px;
    padding: 10px 69px;
    font-size: medium;
    cursor: pointer;
}

.btn_default:hover {
    background-color: var(--transparent);
    border: solid var(--Negro) 1px;
    color: var(--Negro);
}

/* ***************** PORTADA  ********************* */

.portada {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-top: 2%;
}

.imgInicio{
    width: 380px;
}

/* .portada__titulo{
    color: var(--lila);
    font-size: 40px;
    font-weight: bolder;
}
.portada__titulo--color{
    color: var(--naranja);
    font-style: italic;
} */
.portada__subtitulo {
    font-weight: normal;
    font-size: clamp(18px, 3vw, 30px);
    font-style: italic;
}

.portada__boton {
    padding: 40px 0;
}


/* ******************* ERROR 404 ********************* */
.e404 {
    position: relative;
    justify-content: center;
}

.error404 {
    color: var(--rosa);
    font-size: clamp(115px, 19vw, 600px);
    font-weight: 900;
}

.error404__msg {
    position: absolute;
    top: 55%;
    color: var(--Negro);
    text-shadow: 2px 3px 2px var(--naranja);
    padding: 5%;
    font-size: clamp(19px, 3vw, 170px);
}

.error__disculpas {
    font-size: clamp(14px, 2vw, 30px);
    margin-top: 15px;
}

/* ******************* REGISTRO ********************* */
.registro {
    padding-top: 1%;
}

form {
    padding-bottom: 60px;
}

form div {
    position: relative;
    padding: 20px 50px 20px 0;
    border-radius: 33.05px;
    border: solid 1px;
    margin: 15px 0;
    background-color: var(--gris);
}

.remember {
    width: 100%;

    padding: 20px 80px;
    text-align: center;
}

input {
    position: absolute;
    top: -5px;
    left: 30px;
    border: none;
    z-index: 0;
    width: 80%;
    height: 40px;
    margin: 5px 0;
    background-color: transparent !important;
    outline: none !important;
    /*Quita los bordes al seleccionar el input*/
}



/*para cambiar el color del autocompletado en los inputs*/
input:-webkit-autofill {
    -webkit-text-fill-color: var(--morado);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
-webkit-box-shadow: 40px 0px 0px 1000px var(--gris) inset;
}


.check {
    position: relative;
    top: 2px;
    margin-left: -20px;
    width: 30px;
    height: 15px;
}

.eyeIcon {
    position: absolute;
    z-index: 1;
    top: 10px;
    right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}


/* TOGGLE BUTTON */

/* .btnToggle {
    position: relative;
    width: 40px;
    height: 20px;
    background-color: var(--lila2);
    border: solid 2px var(--lila2);
    border-radius: 33px;
} */

/* .moon {
    position: absolute;
    left: -9999px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    background-color: var(--blanco);
    border-radius: 50%;
    top: 2px;
}

.sun {
    position: absolute;
    left: -9999px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    background-color: var(--blanco);
    border-radius: 50%;
    top: 2px;
} */

/* .off {
    left: 0px;
    top: 0px;
}

.on {
    left: 20px;
    top: 0px;
} */


/* ***************** PERFIL ********************* */


.perfil {
    background-color: var(--blanco);
    border-radius: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    justify-items: center;
}

.perfil__foto {
    width: 30%;
    border-radius: 50%;
    /* border: solid 1px var(--morado); */
    box-shadow: #0d2b33 0px 5px 5px 1px;
}



/* ***************** FOOTER  ********************* */
footer {
    background-color: var(--gris);
    border-radius: 45px 45px 0px 0px;
    padding: 2vw 15%;
    /* position: absolute; */
    bottom: 0;
    width: 100%;
}


.submenu__barra {

    justify-content: space-between;
    align-items: center;
    justify-items: center;
    gap: 5px;
}

.submenu__barra__icono {
    align-items: center;
    justify-content: center;
}

.submenu__barra__icono--size {
    width: clamp(24px, 3vw, 40px);
}

/* DARK MODE */
/* .dark {
    background-color: var(--DarkNegroClaro);
    color: var(--blanco);
} */




/* ++++++++++++++++++++++++++++ DISEÑO RESPONSIVE ++++++++++++++++++++++++++++++++ */
/*Large devices (desktops, 992px and up)*/
@media screen and (max-width: 1200px) 
{
    .circle0{
        overflow: hidden;
        top: -33vh;
        left: 0px;
        background-color: var(--lilaClaro);
        width: 100%;
        height: 60%;
    
    
    }
}

@media screen and (max-height: 1024px) {
    footer{

        margin-top: 160px;
    }
}
/* Medium devices (tablets, 768px and up)*/
@media screen and (max-width: 992px) {

}

@media screen and (max-width: 720px) {

}

/* s-Small devices (small phones, 576px and up)*/
@media screen and (max-width: 694px) {

}

@media screen and (max-width: 576px) {
    .logo {
        margin-top: 10px !important;
    }
}

@media screen and (max-width: 375px) {

}