/* Google Font Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
/* body::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 66, 207, 0.2);
} */
/* ****************** */
/* Estilos del header */
/* ****************** */
.header__login-container {
    /* position: relative;
    z-index: 50; */
    width: 100%;
    background: linear-gradient(to right,hsla(210, 70%, 37%,.9),hsl(200, 72%, 65%,.6));
    /* background: linear-gradient(to top,rgba(216, 223, 231, 0.8),rgba(70, 73, 77, 0.5)); */
    box-shadow: 0 1px 5px rgba(23, 24, 24, 0.9);
    transition: all 0.3s ease;
}
.header__login-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 4.8em;
    padding: 0.2em;
    /* background-color: hsl(180, 24%, 93%); */
    overflow: hidden;
    transition: all 0.3s ease;
}
.header__login-img {
    display: block;
    width: 8.5em;
}
.header__login-img--right{
    width: 7em;
    transition: all 0.3s ease;
}
/* ********************* */
/* Estilos del Main   */
/* ********************* */
.main-login {
    /* position: relative;
    z-index: 50; */
    /*  */
    /* position: absolute;
    /* top: 20%; */
    /* left: 50%;
    transform: translateX(-50%); */
    /*  */
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    /* border: 1px solid red;   */
    transition: all 0.3s ease;
    /* #f3bf16; */
    /* #1c5d9f */
}
.login__div-icon{
    width: 100%;
    text-align: center;
    margin-top: 2em;
    /* margin-bottom: .3em; */
}
.login__icon-i {
    font-size: 5em;
    padding: 30px;
    margin-top: .2em;
    margin-bottom: .6em;
    /* border: 1px solid hsla(210, 100%, 50%,.5); */
    /* border: 1px solid rgba(70, 73, 77, .8); */
    border: 1px solid hsl(224, 89%, 60%);
    border-radius: 50%;
    /* background-color: rgba(12, 80, 207, 0.1); */
    background-color: #fff;
    /* color: hsla(210, 100%, 50%,.5); */
    color: hsl(224, 89%, 60%, .8);
}
.login__icon-title {
    font-size: 2.5rem;
    font-weight: 500;
    /* margin-top: .2em;
    margin-bottom: .6em; */
    /* border: 1px solid red; */
    letter-spacing: 3px;
    color: #fff;
    color: rgba(70, 73, 77, .8);
}
.login__form {
    max-width: 350px;
    width: 100%;
    padding: 5px 12px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
    /* border: 1px solid #777; */
    box-shadow: 2px 5px 7px 3px rgba(0,0,0, .5);
    background-color: #fff;
}
.login__div {
    position: relative;
    height: 60px;
    margin: 20px 0;
    /* border: 1px solid red; */
}
.login__input {
    height: 100%;
    width: 100%;
    background-color: #FFF;
    color: #888;
    font-size: .9rem;
    font-weight: 500;
    outline: none;
    border-radius: 6px;
    padding: 0 40px 0 8px;
    border: 2px solid #a6a6a6;
    transition: all 0.3s ease;
}
.login__input:focus {
    border-color: #4070F4;
}
.login__label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #a6a6a6;
    left: 15px;
    font-size: 1rem;
    font-weight: 400;
    background-color: #fff;
    padding: 0 6px;
    pointer-events: none;
    transition: all 0.3s ease;
}
.login__label--top {
    top: 0;
    color: #a6a6a6;
}
.login__input:focus + .login__label,
.login__input:valid + .login__label {
    top: 0;
    color: #4070F4;
    font-size: .8rem;
}
.login__button {
    font-size: 1rem;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
    padding: .6em 0;
    outline: none;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: #4070F4;
    color: #fff;
    cursor: not-allowed;
    transition: all 0.3s ease;
}
.login__button.active:hover {
    background-color: #265DF9;
    cursor: pointer;
}

/* ********************* */
/* Estilos Responsive    */
/* ********************* */
@media screen and (min-width: 576px) {
    .header__login-div {
        width: 90%;
    }
    .header__login-img--right{
        width: 10em;
    }
}

@media screen and (min-width: 768px) {
    .header__login-div {
        width: 80%;
    }
}

@media screen and (min-width: 992px) {
    .header__login-div {
        width: 70%;
    }
}

@media screen and (min-width: 1200px) {
    .header__login-div {
        width: 65%;
    }
    .biotime__hr {
        width: 95%;
    }

}

/* @media screen and (min-width: 1400px) {
    .biotime__hr {
        width: 85%;
    }
} */
