@font-face{
	font-family: karla;
	src: url(../fuente/Karla-Regular.ttf);
}

#relaciones{
     width: 90% !important;
}
/*---------------ESTILOS PARA EL ENCABEZADO-----------------*/
.header__sesion{
	width: 100%;
	margin-top: 20px;
	padding: 10px 0;
	box-shadow: 0 0 45px inset; 
	/*background-color: #2b2b2b;*/
}

.contenedor__header{
	width: 100%;
	margin: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.contenedor__header img{
	margin: auto;
	display: flex;
	align: auto;
	width: 70%;
	height: 230px;
}

.encabezado{
	text-align: center;
	letter-spacing: 1px;
	color: #363636;
}

.contenedor__header .encabezado h1{
	font-size: 2.0em;
	color: rgb(0,200,150);
}

.contenedor__header .encabezado p{
	font-size: 1.5em;
	color: #eeee2b;
}

.contenedor__usuario{
	width: 100%;
	margin: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.contenedor__usuario p{
    font-size: medium;
    background-color:#f7f7ef;
    opacity:0.9;
    color: rgb(0,0,0);
    text-align: right;
}

.contenedor__usuario .encabezado p{
	font-size: 1.5em;
}

/*----------------TERMINA ESTILOS DEL ENCABEZADO----------------*/
/*-----------------------------------------------------------------------------------------*/
/*-------------------ESTILOS PARA EL FORMULARIO------------------*/

.formulario{
	width: 450px;
	max-width: 100%;
	margin: auto;
	margin-top: 50px;
	padding: 20px;
	box-shadow: 0 0 20px 1px rgba(0,0,0,0.3);
	position: relative;
}

.formulario__titulo{
	text-align: center;
	color: #363636;
	margin-bottom: 35px;
}

.formulario__input,
.formulario__label,
.formulario__submit{
	display: block;
	width: 100%;
	font-size: 1.3em;
}

.formulario__input{
	padding: 20px;
	background: transparent;
	border: 1px solid rgba(0,0,0,0.3);
	margin-bottom: 40px;
	background: rgba(219,219,219,0.4);
}

.formulario__input:focus{
	outline: 1px solid rgba(0,0,0,0.7);
}

.formulario__input:focus + .formulario__label{
	margin-top: -137px;
}

.formulario__label{
	padding-left: 15px;
	position: absolute;
	margin-top: -89px;
	z-index: -20;
	transition: all 0.5s;
}

.formulario__submit{
	padding: 10px 0;
	background: #D5CEA8;
	color: #000;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.7) inset;
	cursor: pointer;
	border: none;
	letter-spacing: 1px;
	transition: all 0.5s;
}

.formulario__submit:hover{
	background: #363636;
	color: #FFF;
}

.fijar{
	margin-top: -137px;
}

#resultado {
    background-color: red;
    color: white;
    font-weight: bold;
}
#resultado.ok {
    background-color: green;
}

.padre {
  background-color: #fafafa;
  margin: 1rem;
  padding: 1rem;
  border: 2px solid #ccc;
  /* IMPORTANTE */
  

  align-items: center;
}

/*----------------TERMINA ESTILOS DEL FORMULARIO----------------*/
/*-----------------------------------------------------------------------------------------*/
/*--------------------ESTILOS PARA EL FOOTER--------------------*/

.pie{
	width: 100%;
	background: #D5CEA8;
	margin-top: 50px;
	text-align: center;
	font-size: .8em;
	padding: 5px 0;
}

/*----------------TERMINA ESTILOS DEL FOOTER----------------*/
