/*---------------------------------------------------------------------------------------------
-----------------Diseño del buzón-------------------------------------------------------------*/

/*----------- Diseño del Select Tema ----------------*/
#iDselecTema{
	font-size: 14px; /* Cambiar el tamaño de la tipografia */
	color: #FFFFFF;
	border: none;
	background-color: #33C3F0;  /* Color de fondo al pasar el cursor */
	width: 45%;
	padding: 2.4% 1%;
}

.container form{
	width: 85vh;
	margin: 0 auto;
}

/*----------- Diseño del post it -----------------------------------*/
.txtNota{
	width: 80vh;
	height: 40vh;
    margin: 1.5rem auto;
	text-decoration: none;
	font-size: 16px; /* Cambiar el tamaño de la tipografia */
	/*text-transform: uppercase; /* Texto en mayusculas */
	font-weight: bold; /* Fuente en negrita o bold */
	color: #464544; /* Color del texto */
	/* background-color: #f3c809; */
	resize: none;
	border: none;
	/*border-radius: 8px; /* Borde del boton */
	letter-spacing: 2px; /* Espacio entre letras */
	 /* Color de fondo */
	 background-color: rgb(223, 232, 241, .9);
    background-image: url("../images/notitas02.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
	padding: .8% .8%; /* Relleno del boton */
	position: relative;
	transition: all 300ms ease 0ms;
    box-shadow: 0px 0px 8px .3px rgba(30, 31, 35, .2); /*top right bottom left*/
	z-index: 1;
}

textarea:focus, input:focus, input[type]:focus {
    /*border-color: rgb(255, 144, 0);
    box-shadow: 0 1px 1px rgba(229, 103, 23, 0.075)inset, 0 0 8px rgba(255,144,0,0.6);*/
    outline: 0 none;
}

.txtNota:hover {
	/*background-color: #1999A4;  /* Color de fondo al pasar el cursor */
	box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
	transform: translateY(-7px);
	/*color: #f5f5f5;*/
}


/*----------- Diseño del botón de envío ---------------------------*/
input[type="submit"]{
	/*text-transform: uppercase; /* Texto en mayusculas */
	font-weight: bold; /* Fuente en negrita o bold */
	color: rgb(21, 134, 157, 0); /* Color del texto */
	background-color: #33C3F0;  /* Color de fondo al pasar el cursor */
	cursor:pointer;
	border-radius: 6px; /* Borde del boton */
	border: none;
	letter-spacing: 2px; /* Espacio entre letras */
	 /* Color de fondo */
    background-image: url("../images/avioncito01.png");
    background-repeat: no-repeat;
    background-size: auto 80%;
	background-position: center ;
	width: 40%;
	min-height: 50px;
	height: auto;
	text-align: center;
	
	margin-left: 3rem;
	/*transition: all 300ms ease 0ms;*/
    box-shadow: 3px 10px 10px 1px rgba(30, 31, 35, 0.2); /*top right bottom left*/
	z-index: 99;
}

input[type="submit"]:hover {
	background-color: #0019ff;
	box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
	transform: translateY(-7px);
	/*color: #f5f5f5;*/
}



