.container-form {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  margin-top: 15px;
}

form #input-dates {
    font-size: large;
}

input[type=date] {
    padding: 12px;
    border: 1px solid darkgray;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=text], input[type=email], input[type=tel], select#quantity, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid darkgray;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.req {
  color: red;
}

label {

  margin-top: 1em;
  margin-right: 0.3em;
}

button[disabled]{
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
}

@media (max-width: 600px) {
  input[type=date] {
    width: 100%;
  }
}

.error-message {

  color: red;
  font-size: smaller;
  
}

.error-container {
  padding-bottom: 15px;
}

/* CSS */
.button-form {
  appearance: none;
  background-color: var(--darkBlue);
  border: 2px solid #1A1A1A;
  border-radius: 15px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  min-height: 60px;
  min-width: 0;
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  
  will-change: transform;
}

.button-form:disabled {
  pointer-events: none;
}

.button-form:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.button-form:active {
  box-shadow: none;
  transform: translateY(0);
}

h2 {
  font-weight: 450;
}

.confirm-card-hidden {
  display: none;
}

.form-section {
  margin-top: 20px;
  width: 80%;
}

.form-desc {
  padding-left: 20px;
  padding-right: 20px;
}

.confirm-card {
  background: #f2f2f2;
    border-radius: 20px;
    box-shadow: 0 0 20px 8px #d0d0d0;
    height: 300px;
    padding: 10px;
    width: 70%;
}

.confirm-card img {
  width: 75px;
  height: 75px;
  padding-top: 10px;
}

@media (min-width: 800px) {

  .confirm-card {
    width: 40%;

  }

  .form-section {
    
    width: 70%;
  }
  
}

@media (min-width: 600px) and (max-width: 799px) {
  .confirm-card {
    height: 300px;
    width: 55%;
    
  }
}

@media (min-width: 450px) and (max-width: 599px) {
  .confirm-card {
    height: 250px;
    width: 65%;
    
  }
}

@media (max-width: 450px) {
  .confirm-card {
    height: 225px;
    width: 85%;
  }
}


@media (max-width: 599px) {
  .confirm-card img {
    width: 50px;
    height: 50px;
  }

  .confirm-card h2 {
    font-size: 20px;
  }

  .form-section {
    width: 90%;
  }
}
