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

body{
    font-family: 'Poppins', sans-serif;
}

.container-fluid{
    display: flex;
    /* flex-direction: row; */
    flex-wrap: wrap;
    background-color: rgb(255, 255, 255);
}

.eslogan{
    /* height: 100vh; */
    background: #0E4376; 
    /* background: linear-gradient(180deg, rgba(111,190,247,1) 0%, rgba(177,207,245,1) 100%); */
    width: 55%;
    margin-left: -12px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.conteText{
    width: 75%;
    height: 400px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 5px;
    backdrop-filter: blur(6.6px);
    -webkit-backdrop-filter: blur(6.6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 15px;
    z-index: 1;
}

.frase{
    font-size: 40px;
    font-weight: bolder;
    line-height: 35px;
    color: white;
    text-align: center !important;
}

.larg{
    text-align: center;
    color: #cecece;
}

.circulo1 {
    width: 250px;
    height: 250px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #226BB3;
    filter: blur(60px);
    position: absolute;
    bottom: 0;
    left: -30px;

}

.Img{
    margin-top: -10px;
    margin-bottom: 30px;
}
.cont_form{
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.titulo{
    font-size: 28px;
    font-weight: bolder;
    color: #303030;
    /* text-shadow: 0px 1px 0 rgba(41, 41, 41, 0.5); */
    
}

.ImgBl {
    margin-bottom: 15px;
}
.desc{
    margin-top: -20px;
    color: #929296;
}

.login__field {
    padding: 20px 0px;	
    position: relative;	
    margin-top: -20px;
}
    
.login__icon {
    position: absolute;
    top: 35px;
    /* left: 5px; */
    color: #aaa8a8;
    margin-left: 10px;
    margin-right: 10px !important;
}
    
.login__input {
    border: 2px solid #dcdedd;
    background: none;
    padding: 10px;
    padding-left: 24px;
    font-weight: 700;
    width: 100%;
    transition:.3s;
    border-radius: 5px;
}

.login__input::placeholder {
    padding-left: 10px !important;
}
.login__input:active,
.login__input:focus,
.login__input:hover {
    outline: none;
    /* border-bottom-color: #0f8f83; */
}

.conten{
    background-color: white;
    width: 80%;
    margin-top: 45px;
}

.lab{
    font-size: 14px;
    font-weight: 600;
    /* margin-bottom: -5px; */
}

.login__submit {
    background: linear-gradient(90deg, #0E4376 0%, #226BB3 35%);
    font-size: 14px;
    margin-top: 30px;
    padding: 16px 20px;
    border-radius: 5px;
    border: 1px solid transparent;
    text-transform: uppercase;
    font-weight: 700;
    
    width: 100%;
    color: #ffffff;
    /* box-shadow: 0px 2px 2px #24877d; */
    cursor: pointer;
    transition: .2s;
    margin-bottom: 10px;
    text-align: center;
}
.login__submit:hover{
    background-color: #0b5d55;
    color: white;
    /* transform: translateX(100%); */
    transition: all .5s ease-in;
}
    
.login__submit:active,
.login__submit:focus,
.login__submit:hover {
    border-color: #24877d;
    outline: none;
}


.separator {
    text-align: center;
    position: relative;
    margin: 20px 0;
    margin-bottom: 15px;
    color: #3d3d3d;
  }
  
  .separator .text {
    background: #FFF; /* Asumiendo que el fondo es blanco */
    padding: 0 10px;
    position: relative;
    top: 0px; /* Ajusta este valor según la altura de tu fuente */
    z-index: 1;
  }
  
  .separator::before {
    content: '';
    display: block;
    margin: auto;
    width: 100%;
    height: 1px;
    background: rgb(255, 255, 255); /* Cambia el color según el diseño */
    position: absolute;
    top: 50%;
    border-color: #929296;
    left: 0;
    right: 0;
    border-top: 2px dashed; /* Crea la línea punteada */
    z-index: 0;
  }


.enlace{
    text-decoration: none;
    color: #8e9dbc;
    font-weight: bold;
    margin-top: 5px;
}

.showPassIcon {
    position: absolute;
    right: 10px;
    top: 0;
    font-size: 20px;
    color: #aaa8a8;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hidePassIcon {
    position: absolute;
    right: 10px;
    top: 0;
    font-size: 20px;
    color: #aaa8a8;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    cursor: pointer;
}

@media (max-width: 900px){
    .container-fluid{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

    
    .cont_form{
        /* height: 100vh; */
        background-color: rgb(255, 255, 255);
        width: 100%;
    }

    .conten{
        margin-top: 20px !important;
    }

    .Img{
        margin-top: 5px;
    }

    .titulo{
        font-size: 25px;
    }
    .eslogan{
            /* height: 100vh; */
        background: linear-gradient(180deg, rgba(111,190,247,1) 0%, rgba(177,207,245,1) 100%);
        width: 107%;
        margin-left: -12px;
        height: 150px !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .conteText{
        width: 100%;
        height: 100%;
        background-color: transparent;
    }
    
    
    .frase{
        font-size: 20px;
        font-weight: bolder;
        line-height: 35px;
    }

    .larg{
        display: none;
    }

    .circulo1 {
        width: 120px;
        height: 120px;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        background: #d7c0f6;
        filter: blur(50px);
        position: absolute;
        top: 0;
        left: -30px;
    
    }
}