/* COLORES

ROJO -----> #EF2121 - rgb(239, 33, 33)
AZUL -----> #008CC6 - rgb(0,140,198)
GRIS -----> #808080
DORADO ---> #CCB77D - rgb(204,183,125)
VERDE ----> #326450 - rgb(50,100,80)
*/

/*------ Estilos de contenido ------*/

.us-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.us-tipe{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.us-class{
    width: 150px;
    height: 150px;
    padding: 10px;
    border-radius: 20%;
    margin: auto;
}

.cob-class{
    width: 150px;
    height: 150px;
    padding: 10px;
    margin: auto;
}

.column--us50{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.flex--column50{
    width: 90%;
}

.column--us100{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.flex--column100{
    width: 52%;
}

/*------ Estilos de login ------*/

.login-class{
    width: 150px;
    height: 150px;
    padding: 10px;
    margin: auto;
}

.login{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	width: 50%;
    max-width: 500px;
	margin: auto;
	align-items: center;
}

.login span{
	display: flex;
	text-align: center;
	margin-bottom: 10px;
    font-variant: small-caps;
    font-size: 1.2em;
    font-weight: bold;
}

.data_login{
	display: flex;
	width: 60%;
    margin-top: 10px;
	margin-bottom: 10px;
	padding: 7px;
	box-sizing: border-box;
	font-size: 14px;
	border: 1px solid #EF2121;
    border-radius: 10px;
	text-align: center;
}

.data_login:focus{
    border: 3px solid #EF2121;
} 

.boton{
	width: 50%;
    margin-top: 10px;
	margin-bottom: 10px;
	padding: 10px;
	box-sizing: border-box;
	font-size: 22px;
	font-weight: bold;
	border: none;
    border-radius: 20px;
	background: #008CC6;
	color: #FFF
}

.boton:hover{
	cursor: pointer;
    opacity: 0.7;
}

.boton:active{
    transform: scale(0.95);
}

/*---------------Estilos responsive 480px-----------------*/
@media screen and (min-width:480px){
    .us-class{
        width: 200px;
        height: 200px;
    }
    
    .cob-class{
        width: 350px;
        height: 300px;
    }
    
    .main__title{
        font-size: 2.0em;
    }
    
    .main__subtitle{
        font-size: 1.2em;
    }

    .main__txt{
        font-size: 1.4em;
    }
}

/*---------------Estilos responsive 768px-----------------*/
@media screen and (min-width:768px){
    .us-container{
        align-items: flex-start;
    }
    
    .us-class{
        width: 250px;
        height: 250px;
    }
    
    .cob-class{
        width: 550px;
        height: 500px;
    }
    
    .column--us50{
        width: 48%;
    }
    
    .main__title{
        font-size: 2.0em;
    }
    
    .main__subtitle{
        font-size: 1.2em;
    }

    .main__txt{
        font-size: 1.3em;
    }
}

/*---------------Estilos responsive 1024px-----------------*/
@media screen and (min-width:1024px){
    .us-class{
        width: 300px;
        height: 300px;
    }
    
    .cob-class{
        width: 650px;
        height: 600px;
    }
    
    .main__title{
        font-size: 2.2em;
    }
    
    .main__subtitle{
        font-size: 1.7em;
    }

    .main__txt{
        font-size: 1.5em;
    }
}