body {
			background-image: url(img/back.jpg);
			background-size: cover;
	   }
    
* {
  box-sizing: border-box;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

input[type=password] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: #0033FF;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

input[type=submit]:hover {
  background-color: #0066FF;
}

input[type=button] {
  background-color: #0033FF;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

input[type=button]:hover {
  background-color: #0066FF;
}



enlace {
    width: 80%;
    text-align: center;
} 

a {
  background-color: #0033FF;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  float: right;
  text-decoration: none;
  padding: 12px 20px;
}

a:hover {
  background-color: #0066FF;
}

.resalte1 {}

.resalte2 {}

.encabezado{
  background-color: #FF3322;
  color: white;
  border: none;
  border-radius: 4px;
}

.container {
  border-radius: 5px;
  padding: 20px;
}

.col-10 {
  float: left;
  width: 10%;
  margin-top: 6px;
  padding: 2px;
}

.col-15 {
  float: left;
  width: 15%;
  margin-top: 6px;
  padding: 2px;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
  padding: 2px;
}

.col-20 {
  float: left;
  width: 20%;
  margin-top: 6px;
  padding: 2px;
}

.col-30 {
  float: left;
  width: 30%;
  margin-top: 6px;
  padding: 2px;
}

.col-40 {
  float: left;
  width: 40%;
  margin-top: 6px;
  padding: 2px;
}

.col-50 {
  float: left;
  width: 50%;
  margin-top: 6px;
  padding: 2px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
  padding: 2px;
}

.col-compl {
  float: left;
  width: 100%;
  margin-top: 6px;
  padding: 2px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Clear floats after the columns */
.row2:after {
  content: "";
  display: table;
  clear: both;
}

.imglogo {
   width: 200px;
}

.imgicono {
   width: 300px;
}


/*@media screen and (max-width: 600px) {*/
@media only screen and (orientation: portrait){
       body {
			background-image: url(img/back_cel.jpg);
			background-size:cover;
		}
		
		a, .col-25, .col-75, .col-15, .col-20, .col-30, .col-40, .col-50, input[type=submit] , input[type=button] {
            width: 100%;
            margin-top: 25;
        }
         
        .row2 {
             display: none;
        }
        
        .imglogo {
		   width: 30%;
	   }
	   
	   .imgicono {
		   width: 35%;
	   }
	   
	   .resalte1 {
	      background-color: #FF3322;
          color: white;
          border: none;
          border-radius: 4px;
	   }

       .resalte2 {
           font-weight: bold;
       }

}