*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
    text-decoration: none;
}

body{
    background-image: url(../image/bg2.jpg);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}
p{
    color:#575757;
}

.detail{
    text-align: center;
    margin-top: 1.25rem;
    font-size: .8rem;
}

.container-form{
    width: 90%;
    max-width: 600px;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    padding-bottom: 45px;
}

.header{
    width: 100%;
    height: 80px;
    background: #fff;
    display: flex;
    align-content: center;
    position: relative;
    box-shadow: 0px 5px 20px -13px;
}

.logo-title{
    display: flex;
    margin: auto;
}

.logo-title img{
    width: 120px;
    height: 62px;
}

.logo-title h2{
    color: #0076bd;
    font-weight: 600;
    font-size: 1.75rem;
}

a{
    color: white;
}

/*formulario Login*/

.form{
    width: 100%;
}

.form .welcome-form{
    display: flex;
    justify-content: center;
    margin: 2rem 0 1rem 0;
}

.form .welcome-form h1{
    font-weight: 300;
    font-size: 30px;
    color: #898989;
}

.form .welcome-form h2{
    font-size: 1.75rem;
    margin-top: -4px;
    font-weight: 600;
    color: #3391c9;
}


.form .detail span{
    color: #3391c9;
    font-weight: 600;
}

.form .detail span:hover{
    color: #0076ff;
}

.line-input{
    width: 90%;
    max-width: 350px;
    display: flex;
    border: 2px solid #d4d4d4;
    border-radius: 10px;
    margin: auto;
    margin-bottom: 1.2rem;
    padding: 6px;
    position: relative;
}

.border-input{
    border: 2px solid #3391c9;
    border-radius: 10px;
}

.line-input input{
    border-style: none;
    outline: 0px;
    margin-left: 10px;
    font-size: 1rem;
    width: 95%;
    font-weight: 300;
}

.line-input label{
    font-size: 20px;
    position: relative;
    top: -4px;
    color: #0076ff;
}

.form button{
    width: 90%;
    max-width: 250px;
    display: block;
    margin: auto;
    padding: .5rem 0 .5rem 0;
    color: white;
    background: #3391c9;
    border-style: none;
    border-radius: 7px;
    font-size: .8rem;
    font-weight: 500;
    cursor: pointer;
}

.form button:hover{
    background-color: #0076bd;

}

.form button label{
    position: relative;
    left: 50px;
    font-size: 10px;
    cursor: pointer;
}


.mensaje{
    width: 100%;
    max-width: 350px;
    margin: auto;
    margin-top: 20px;
    text-align: left;
    padding: 6px;
    color: red;
}


.active{
    border-bottom: 4px solid #5584FF;
}


/*Principal*/


.welcome{
        position: absolute;
        top: 55%;
        left: 50%;
        width: 90%;
        max-width: 600px;
        border-radius: 10px;
        background: #fff;
        text-align: center;
        padding: 20px 20px 40px 20px;
        margin: auto;
        transform: translate(-50%, -50%);
        overflow: hidden;
    }
    .welcome h2{
        font-size: 1.75rem;
        color: #0076ff;
        font-weight: 600;
    }
    .welcome h4{
        font-size: .8rem;
        color: #0076ff;
        font-weight: 600;
        margin-top: 1.25rem;
        margin-bottom: 1.75rem;
    }

    .welcome h4 span{
        font-size: .8rem;
        font-weight: 400;
        color: #898989;
    }
    
    .welcome a{
        display: block;
        font-size: .8rem;
        font-weight: 500;
        border-radius: 7px;
        padding: .5rem 0 .5rem 0;

    }
    
    .welcome .modify{
        color: #0076bd;
        font-size: 1rem;
        font-weight: 700;
    }

    .welcome .subtitle{
        color: #575757;
        font-weight: 500;
        font-size: 1rem;
        margin-top: .75rem; 
    }
    .welcome button{
        width: 90%;
        max-width: 300px;
        display: block;
        margin: auto;
        color: white;
        background: #3391c9;
        border-style: none;
        border-radius: 7px;
        cursor: pointer;
        margin-top: 1rem;
    }
    
    .welcome button:hover{
        background-color: #0076bd;
    }
    
    .welcome button label{
        position: relative;
        left: 50px;
        font-size: 10px;
        cursor: pointer;
    }
    
    .welcome .secundary{
        background: white;
        border: 2px solid #3391c9;
        color: #3391c9 !important;
        font-weight: 500;
    }

    .welcome .secundary:hover{
        background: #0076bd;
        border: 2px solid #0076bd;
        color: white;
    }
    
    .welcome .secundary a{
        color: #3391c9;
    }
    .welcome .secundary a:hover{
        color: white;
    }
    
    
    

    
    
    
























