/* CSS Document */
* {
  box-sizing: border-box;
}

img {
  vertical-align: middle;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}
.row{margin-bottom: 15px}
.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: left;
  margin-right: 10px;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 1; border: #000000 solid 2px; border-radius: 5px;
}

.active,
.demo:hover {
  opacity: 1; border: #F5080C solid 2px; border-radius: 5px;
}

input[type=text], input[type=email], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #333;
  border-radius: 4px;
  resize: vertical; 
 background-color: #fff;
}

label {
  text-transform: none; font-size: 16px;
  display: inline-block; font-weight: normal; word-spacing: normal; color: #000
}

input[type=submit] {
  background-color: red;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer; margin: auto
}

input[type=submit]:hover {
  background-color: #000;
}
/*

.row:after {
  content: "";
  display: table;
  clear: both;
}
*/