﻿@font-face {
    font-family: 'Maven Pro';
    src: url('../../fonts/mavenpro/MavenPro.ttf');
}
    
*{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family:'Maven Pro';    
        }
        
        .content_imagen{
            width: 100%;
            height: 100vh;
            position: absolute;
            top: 0;
            /*line-height: 0px;*/
            z-index: -1;
            
        }
        
        .imagenFondo{
            width: 100%;
            height: 100vh;
            display: block;
            
            
        }
        .fondoazul{
            width: 100%;
            height: 100vh;
            background: #1f64c3;
            position: absolute;
            top: 0;
            opacity: 0.6;
        }
        
        
        .div_login{
            
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .div_login_content{
            
            background: white;
            padding: 50px  40px;
            display: grid;
            grid-template-columns: 1fr;
            grid-gap: 10px;
            width: 300px;
        }
        
        .div_title{
            text-align: center;
            margin-bottom: 10px;
        }
        .resaltado{
            font-weight: bold;
            font-size: 20px;
        }
        
        .div_text{
            position: relative;
                
        }
        .div_text input[type=password],
        .div_text input[type=text]{
            height: 40px;
            border-radius: 40px;
            border: 1px solid #d4d4d4;
            width: 100%;
            padding: 0px 10px 0px 40px;
            outline: none;
        }

        .div_text input[type=password]:focus,
        .div_text input[type=text]:focus{
            border:1px solid #a0a0a0;
            
        }
        
        .div_text img{
            position: absolute;
            left: 0;
            height: 100%;
            padding: 12px;
        }
        
        .div_buttonpass button{
            width: 100%;
            height: 40px;
            border: none;
            color: #1855a0;
            background: white;
            cursor:pointer;
        }

        .div_button button{
            width: 100%;
            height: 40px;
            border: none;
            background: #1855a0;
            border-radius: 40px;
            color: white;
            cursor:pointer;
        }

        .div_button button:hover{
            background:rgba(22, 102, 211, 0.8);
        }

        
        
        .div_img{
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .div_img img{
            display:flex;
            width: 100%;
        }
        