﻿
/*CLASES PARA FORMULARIO LOGIN HTML*/

/*clase para labels: RUT, Contraseña*/
.estlbrc {
    width: 90px;
    font-family: "Arial", "sans-serif";
    font-size: 16px;
    font-weight: normal;
    color: #FFFFFF;
    }     
  
/*clase para campos: RUT, Contraseña*/    
.esttxrc {
	width: 235;
	height: 35px;
	border: none;
	background-color: #F3F3F3;
    font-family: "Arial", "sans-serif";
    font-size: 16px;
    font-weight: normal;
    text-align: center; 
    border-radius: 10px;
    color: #000000;
    }
    
/*clase para div*/  
.estdiv {
    display: flex;
    justify-content: center;	
	padding: 20px;
	background-image: linear-gradient(to right top, #21072c, #34124e, #441f74, #4f2e9e, #5240cb);
    }
    
/*clase para botón: Ingresar*/    
.estbtt {
    background-image: linear-gradient(to right, #050e1c, #00204b, #002f7d, #003ab0, #1441e1);
	width: 200px;
	height: 40px;
    font-family: "Arial", "sans-serif";
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 10px;
    border: 0px;
    color: #FFFFFF;
    }
    
.estbtt:hover {
    background-image: linear-gradient(to right top, #3d13d4, #0063f5, #008ff5, #00b2e5, #82cfda);
    color: #FF1493;
    }  