/*Estilos formulario*/
body {
		       background: #000;
		       font-family: monospace, arial,verdana;
		       color: #fff;
		       font-size: 1rem;
		       font-weight: bold;
		       border: 4px solid lime;
		       border-radius: 10px;
		   } 
		   
		   div {
		       border: 4px double lime;
		       box-shadow: 0 4px 15px lime;
		       width: 25%;
		       margin-left: 35%;
		       margin-top: 10px;
		   }
		   
		   h1 {
		       color: #000;
		       text-align: center;
		       font-style: italic;
		       -webkit-text-stroke: 2px lime;
		       
		   }
		   
		   table {
		       border: 5px inset lime;
		      /* box-shadow: 0 4px 15px lime;*/
		       margin-bottom: 20px;
		   }
		   
		   label {
		       color: lime;
		       font-weight: bold;
		   }
		   
		   .inp {
		       background: #000;
		       color: lime;
		       font-weight: bold;
		       border: 4px outset lime;
		       border-radius: 20px;
		       margin: 5px;
		   }
		   
		   .inp:hover {
		       background: lime;
		       color: #000;
		       font-weight: bold;
		       border: 4px inset silver;
		       border-radius: 20px;
		       margin: 5px;
		   }
		   
		   .inp2 {
		       border-radius: 5px;
		   }
		   
		   h5 {
		       color: lime;
		       text-align: center;
		   }
		   
		   h6 {
		       color: silver;
		       font-family: monospace;
		       font-weight: bold;
		       font-style: italic;
		   }
