/* CSS Document */


form {
	width:98%;
	background:#f5f5f5;
	border:1px;
	border-style:solid;
	border-color:#ccc;
	margin:10px;
	padding:10px;
	box-sizing: border-box;
	
	}
	
	.formAdmin {
	width:90%;
	background:#f5f5f5;
	border:1px;
	border-style:solid;
	border-color:#ccc;
	margin:10px;
	padding:10px;
	box-sizing: border-box;
	text-align:center;
	border-radius:10px;
	
	}
	
	
	label{
		color:#000;
		font-size:14px;
		display:block;
		width:100%;
		padding:10px;
		}
		
		textarea{
			resize:vertical;
			max-height:150px;
			min-height:100px;
		}
		

	input, textarea, select{
		margin-bottom:10px;
		width:100%;
		padding:10px;
		box-sizing: border-box;
		border:1px;
		border-style:solid;
		border-color:#CCC;
		}

	input:focus, textarea:focus, select:focus{
		border:1px color:#1668c4;}
		
		input[type="submit"]{
			font-size:24px;
			font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
			margin-bottom:0px;
			background:#0073b2;
			border:none;
			color:#fff;}
			
			
		input[type="submit"]:hover{
			background:#009cf2;
			cursor:pointer;
		}
		


/* Cambio los Colores del Placeholder de los Formularios*/		
		::-webkit-input-placeholder {
   color:#999;
   font-size:18px;
}

:-moz-placeholder { /* Firefox 18- */
   color: #0073b2;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #0073b2;  
}

:-ms-input-placeholder {  
   color: #0073b2;  
}
		