
/* FORMULARIO =================================== */
.form_wrap{
    width: 1050px;
    height: 530px;
    margin: 50px auto;
    display: flex;
    background:#fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}


/* Informacion de Contacto*/

.cantact_info{
    width: 100%;
    height: 100%;
    
}

.info_title,
.info_items{
    padding: 20px;
    position: relative;
    z-index: 2;
}

.info_title{
    margin-bottom: 40px;
}

.info_title h3{
    font-size: 25px;
    font-weight: bold;
    color: #051158;
    text-align: center;
}

.info_items p{
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #051158;
    margin-bottom: 10px;
}

p img{
    width: 30px;
    padding: 5px;
}

.info_items p:nth-child(1) span{
    margin-right: 60px;
}

.info_items p:nth-child(2) span{
    font-size: 10px;
    margin-right: 15px;
    margin-left: 4px;
}

/* Formulario de contacto*/
form.form_contact{
    width: 100%;
    padding: 10px;
}

form.form_contact h2{
	font-size: 25px;
	font-weight: bold;
	margin-bottom: 30px;
}

form.form_contact input,
form.form_contact textarea{
    width: 100%;
    padding: 2px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 2px solid #051158;        
    font-family: 'Open sans';
	color: #051158;
    background-color: #dbebf8;             
	font-size: 20px;
	font-weight: 400;
}

form.form_contact textarea{
    max-width: 100%;
    min-width: 10%;
    max-height: 90px;
}

form.form_contact input[type="submit"]{            /* BOTON ENVIAR */
    width: 180px;
	background: #051158;      
	padding: 10px;
	border: none;
	border-radius: 25px;
    align-self: flex-end;
    color: #b1d9fa;        
	font-family: 'Open sans';
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
}

form.form_contact input[type="submit"]:hover{
    color:#051158 ;
    background:#b1d9fa; 
    border: 2px solid #051158;
}



.mensaje_modal{
    background: #fff;            /* #fff  */
    box-shadow: 0px 0px 15px rgba(0,0,0,0.5);
    width: 400px;
    padding: 30px 20px 15px;
}

.mensaje_modal h3{
    text-align: center;
    font-family: 'Ubuntu';
	font-size: 25px;
	font-weight: 400;
}

.mensaje_modal h3:after{
    content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #000000;      /* #C5C5C5   */
	margin: 10px 0px 15px;
}

.mensaje_modal p{
    font-size: 20px;
    color: #051158;        /*  #606060  */
}

.mensaje_modal p:before{
    content: url(../imagen/error.gif);
    font-family: FontAwesome;
    display: inline-block;
    /*color: #E25151;*/
    margin-right: 8px;
}

#btnClose{                                        /* BOTON CERRAR */
    display: inline-block;
	padding: 3px 10px;
	margin-top: 10px;
	background: #830508;
	color: #FFF;
	border: 2px solid #B14141;
	cursor: pointer;
	float: right;
}

/* MENSAJE EXITOSO*/

.fondo_email{
    background: url(03_img/002_encabezado/fondoportada.png);
}

.mensaje-exito{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mensaje-exito h1{
    font-size: 35px;
    display: block;
    text-align: center;
    margin-bottom: 20px;
	color:#051158;       /*   ESTE NO EXISTE   */
}
                     /* ///////////////////////////////////////////////////////////////////// */
.mensaje-exito a{
    display: block;
    padding: 10px 30px;
    background: #0f0c7b;     /*  #4091EC  */
    text-decoration: none;
    color: #c2ebfa;        /* #fff   */
}

.mensaje-exito a:hover{
    background: #3371B6;
}