/* CSS Document used for the Web Project 2 assignment
Author: Kevin Dray
Course: ITWP 1000
File: styles.css */

.form_layout {
    margin: 15px 0 0 0;
}

.form_layout p {
    padding: 0 0 4px 0;
}

.form_layout span {
    float: left;
    width: 150px;
    text-align: left;
}

.form_layout input, .form_layout textarea {
    padding: 5px;
    width: 299px;
    font: 100% arial;
    border: 1px solid #E5E5DB;
    background: #FFF;
    color: #47433F;
}

.form_layout textarea, .form_layout select {
    font: 100% arial;
    width: 299px;
}

.form_layout select {
    width: 310px;
}

.form_layout .checkbox {
    margin: 4px 0;
    padding: 0;
    width: 14px;
    border: 0;
    background: none;
}

nav a.active {
    color: #ff6600;
    font-weight: bold;
    text-decoration: underline;
}

.belt-image {
  text-align: center;
  margin: 2em auto;
}

.belt-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.belt-image figcaption {
  margin-top: 0.5em;
  font-size: 0.9em;
  color: #555;
}

.stacked-images {
  text-align: center;
}

.stacked-images img {
  max-width: 700px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1em auto;
}
.bx-wrapper {
  max-width: 600px;
  margin: 2em auto;
}

.bxslider {
  padding: 0;
  list-style: none;
  margin: 0;
}

.bxslider img {
  width: 100%;
  height: auto;
  display: block;
}

.slider-controls button {
  padding: 0.5em 1em;
  margin: 0 0.5em;
  background-color: #a15259;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.slider-controls button:hover {
  background-color: #c7303c;
}

.submit-button, .reset-button {
  background-color: #e63946;
  color: #fff;
  border: none;
  padding: 0.75em 1.5em;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-button:hover, .reset-button:hover {
  background-color: #f3e015; /
}