/* Google Font Link */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');
/* General Variables */
:root {
    /* Background */
    --background-header-gob: #BF0909;
    --background-menu: #F6F9FC;
    --background-section-body: #EDF0F4;
    --background-white: #FFF;
    --background-footer-alternative: #464c57;
    --background-footer: #26292E;
    --background-contact-link-first: #233458;
    --background-contact-link-second: #253c63;
    /* Color */
    --color-white: #FFF;
    --color-black: #000;
    --color-link-button: #0056AC;
    --color-item-selected: #FFD147;
    --color-active: #CF000B;
    /* Font weight */
    --weight-regular: 400;
    --weight-paragraph: 400;
    --weight-medium: 500;
    --weight-bold: 700;
    --weight-extrabold: 900;
    /* Font size Title*/
    --size-h1-title-extrabold-desktop: 2.5rem;
    --size-h2-title-bold-desktop: 1.875rem;
    --size-h3-title-bold-desktop: 1.3rem;
    --size-h1-title-extrabold-mobile: 1.875rem;
    --size-h2-title-bold-mobile: 1.5rem;
    --size-h3-title-bold-mobile: 1.25rem;
    /* Line Height Title */
    --line-height-h1-desktop: 40px;
    --line-height-h2-desktop: 36px;
    --line-height-h3-desktop: 24px;
    --line-height-h1-mobile: 36px;
    --line-height-h2-mobile: 24px;
    --line-height-h3-mobile: 20px;
    /* Font size Subtitle*/
    --size-h4-subtitle-bold-desktop: 1.25rem;
    --size-h4-subtitle-bold-mobile: 1rem;
    /* Line Height Subtitle */
    --line-height-h4-desktop: 28px;
    --line-height-h4-mobile: 22px;
    /* Font size Subtitle y Migas de Pan*/
    --size-h5-subtitle-medium-desktop: 1rem;
    --size-h5-subtitle-bold-mobile: 1rem;
    /* Line Height Subtitle y Migas de Pan */
    --line-height-h5-desktop: 22px;
    --line-height-h5-mobile: 22px;
    /* Font size Paragraph */
    --size-paragraph-regular: 1rem;
    --size-paragraph-desktop-regular: 1.2rem;
    /* Line Height Paragraph */
    --line-height-paragraph: 24px;
}
/* Format Rules */
* {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} 
body {
    height: calc(100vh-68px);
}
html {
    scroll-behavior: smooth;
}
img {
    display: block;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
svg {
    display: block;
    width: 100%;
    fill: currentColor;
}
/* ****************** */
/* Estilos del header */
/* ****************** */

/* Etilos del Header Logo */
/* ********************** */
.header-logo {
    width: 100%;
    height: 68px;
    vertical-align: middle;
    background-color: var(--background-header-gob);
    transition: all .3s;
}
.header-logo div a{
    text-decoration: none;
}
.header-logo__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 640px;    
    margin-left: auto;
    margin-right: auto;
    padding: 0 .4em;
    transition: all .3s;
    /* background-color: pink; */
}
.header-logo__escudo {
    display: block;
    width: 193px;
    transition: all .3s;
}
.header-logo__span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 12em;
    /* background-color: black; */
}
.header-logo__img{
    display: block;
    width: 100%;
    max-width: 2.95em;
}
.header-logo__img--alt {
    display: none;
}
.header-logo__separator {
    height: 25px;
    width: 2px;
    background-color: #fff;
}
.header-logo__text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all .3s;
}
.header-logo__icon {
    font-size: 1.5em;
    padding: .4em .3em;
    border-radius: 50%;
    color: var(--color-white);
    transition: all .3s;
}


/* ********************* */
/* Estilos del Main   */
/* ********************* */
.main-login {  
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
    /* #f3bf16; */
    /* #1c5d9f */
}
.login__div-icon{
    width: 100%;
    padding-top: 1em;
    padding-bottom: 3em;
    text-align: center;
    /* background-color: red; */
}
.login__icon-i {
    font-size: 5em;
    padding: 50px;
    border: 1px solid rgb(111,119,123);
    border-radius: 50%;
    background-color: #fff;
    /* color: #4070F4; */
    color: #4392F1;
}
.login__icon-title {
    margin-bottom: .5em;
    font-size: var(--size-h1-title-extrabold-mobile);    
    font-weight: var(--weight-extrabold);
    line-height: var(--line-height-h1-mobile);
    letter-spacing: 3px;
    color: rgb(111,119,123);
}
.login__form {
    max-width: 350px;
    width: 100%;
    padding: 5px 12px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
    box-shadow: 2px 5px 7px 3px rgba(0,0,0, .5);
    background-color: #fff;
}
.login__div {
    position: relative;
    height: 60px;
    margin: 20px 0;
}
.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; */
    background-color: #4392F1;
    color: #fff;
    cursor: not-allowed;
    transition: all 0.3s ease;
}
.login__button.active:hover {
    background-color: #265DF9;
    cursor: pointer;
}

/* ********************* */
/* Estilos Responsive    */
/* ********************* */


/* ********************* */
/* ***  WIDTH: 400px *** */
/* ********************* */
@media screen and (min-width: 400px) {
    /* Etilos del Header Logo */
    /* ********************** */
    .header-logo__container {
        padding: 0 1em;
    }
    .header-logo__escudo {
        width: 256px;        
    }
    .header-logo__separator {
        width: 1px;
    }    
    .header-logo__icon {
        font-size: 1.9em;
        padding: .4em;
    }
}

/* ********************* */
/* ***  WIDTH: 576px *** */
/* ********************* */
@media screen and (min-width: 576px) { 
    .header__login-div {
        width: 90%;
    }
    .header__login-img--right{
        width: 10em;
    }    
}

/* ********************* */
/* ***  WIDTH: 768px *** */
/* ********************* */
@media screen and (min-width: 768px) {
    /* Etilos del Header Logo */
    /* ********************** */
    .header-logo__escudo {
        width: 335px;        
    }
    .header-logo__container {
        max-width: 768px; 
    }
    .header-logo__span {
        width: 100%;
    }
    .header-logo__text {
        font-size: 1.5rem;
        font-weight: var(--weight-medium);
    }
    .header-logo__img {
        display: none;
    }
    .header-logo__img--alt {
        display: block;
        max-width: 7.9em;
    }    
    /* Etilos del login */
    /* **************** */
    .header__login-div {
        width: 80%;
    }
}

/* ********************* */
/* ***  WIDTH: 992px *** */
/* ********************* */
@media screen and (min-width: 992px) {
    .header__login-div {
        width: 70%;
    }
}


/* ********************** */
/* ***  WIDTH: 1024px *** */
/* ********************** */
@media screen and (min-width: 1024px) {
    /* Etilos del Header Logo */
    /* ********************** */
    .header-logo__container {
        max-width: 1024px;  
    }

    .login__icon-title {
        font-size: var(--size-h1-title-extrabold-desktop);
        line-height: var(--line-height-h1-desktop);
    }
}


/* ********************** */
/* ***  WIDTH: 1152px *** */
/* ********************** */
@media screen and (min-width: 1152px) {
    /* Etilos del Header Logo */
    /* ********************** */
    .header-logo__container {
        max-width: 1152px;  
    }
}

/* ********************* */
/* ***  WIDTH: 1200px ** */
/* ********************* */
@media screen and (min-width: 1200px) {
    .header__login-div {
        width: 65%;
    }
    .biotime__hr {        
        width: 95%;
    }
    
}