.form_title {
  color: #1276a8;
  font-size: 30px;
  font-weight: bold;
}

.form_text {
  color: #414342;
}

.form_text a {
  text-decoration: none;
}

.form_text a:hover {
  text-decoration: underline;
}

.form_section {
  /*border-left: 4px solid #f89b24;*/
  background: #d8e7ee;
  padding: 10px;
  color: #1276a8;
  font-weight: bold;
}

.form_section_checkbox {
  background: #d8e7ee;
  color: #1276a8;
  font-weight: bold;
}

.form_feedback {
  font-style: italic;
  margin: 20px 0;
  /*color: #fb5d3a;*/
  vertical-align: middle;
}

.neutral_feedback {
/*
  background: #CCE6FF;
  border: 1px solid #3366FF;
  color: #3366FF;
*/

  background: #FFEFBF;
  border: 1px solid #FF9C1C;
  border-radius: 5px;
  color: #000;
  padding: 15px;
}

.success_feedback {
  background: #CCFFCC;
  border: 1px solid #009933;
  border-radius: 5px;
  color: #000;
  padding: 15px;
}

.success_feedback_text {
  color: #009933;
}

.fail_feedback {
  background: #FFCCCC;
  border: 1px solid #FF5050;
  border-radius: 5px;
  color: #000;
  padding: 15px;
}

.fail_feedback_text {
  color: #FF5050;
}

.note_feedback {
  background: #F1F1F1;
  border: 1px solid #737373;
  border-radius: 5px;
  color: #737373;
  padding: 15px;
  margin-top: 20px;
}

.form_text_extra {
  font-style: italic;
}

.input_label {
  font-size: 11px;
  vertical-align: middle;
  color: #333;
  font-weight: bold;
  width: 150px;
}

.input_field {
  padding: 5px;
  width: 250px;
}

.input_field_pad {
  padding: 5px;
}

.input_textarea {
  /*padding: 5px;*/
  padding: 0;
  /*width: 100%;*/
}

.input_field_break {
  padding: 5px 0 5px 0;
}

.input_error {
  font-style: italic;
  color: #fb5d3a;
}

.input_dropbox {
  padding: 5px 0 5px 0px;
}

.orange_button, .orange_submit {
    background:#ff9c1c !important;
    border-radius:0px !important;
    border: 0px !important;
    display:inline-block !important;
    color:#fff !important;
    width: 262px !important;
    padding: 8px 0 8px 0 !important;
    font-family:arial !important;
    font-size:14px !important;
    font-weight:bold !important;
    text-decoration:none !important;
    cursor: pointer !important;
    text-align: center;
}


/* Sign In */

.signin_blurb {
  background: #d8e7ee;
  width: 320px;
}

.signin_blurb * {
  color:#1276a8;
}


.signin_blurb_header {
  font-size: 20px;
  color: #1276a8;
  font-weight: bold;
  text-align: center;
}

.signin_blurb_subheader {
  font-size: 12px;
  color: #1276a8;
  font-weight: bold;
  text-align: center;
}

.blurb_button {
  vertical-align: bottom;
}

.blurb_button a {
  text-decoration: none;
  font-weight: bold;
  padding: 5px 0;
  text-align: center;
  font-size: 20px;
  color: #FFF !important;
  background: #3bbdee;
  display: block;
  cursor: pointer;
}

.blurb_vm {
  text-decoration: none;
  font-weight: bold;
  padding: 5px 0;
  text-align: center;
  font-size: 20px;
  color: #FFF !important;
  background: #3bbdee;
  display: block;
  cursor: pointer;
  width: 209px;
  margin: 0 auto;
}

/* switch checkbox */
.mb-2 {
  margin-bottom: 2rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 22px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #42bf5e;
}

input:focus + .slider {
  box-shadow: 0 0 1px #42bf5e;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.switch-inline-checkbox .switch {
  float: left;
}
.switch-inline-checkbox .checkbox-title {
  float: left;
  padding: 0px 0 0px 15px;
  margin-top: 2px;
  font-size: initial;
}

