/* 
 * FlowupLabels Basic Stylesheet 
 * -----------------------------
 * This style sheet is marked with comments indicating 
 * what should and what shouldn't be changed for your 
 * styling purposes.
 */

.FlowupLabels .fl_wrap {
  /* Can change */
  width: 55%;
  height: 46px;
  margin: 15px auto; /* change 0 to auto for center alignment */

  /* Don't change */
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

/* initial label state */
.FlowupLabels .fl_label {
  /* Can change */
  top: 15px;
  left: 5px;
  
  /* Don't change */
  position: absolute;
  z-index: 3; /* This can be removed but then the labels must be placed after the inputs in the HTML */
  -webkit-transition: all .05s linear;
     -moz-transition: all .05s linear;
         -transition: all .05s linear;
}

.FlowupLabels .fl_input {
  /* Can change */
  background: none;
  border: none;
  border-bottom: 1px solid #555;
  border-radius: 0;
  font-size: 18px;
  line-height: 22px;
  padding: 30px 0 0 5px;
  
  /* Don't change */
  position: absolute;
  top:0;left:0;right:0;bottom:0;
  width: 100%;
  z-index: 2; /* This can be removed but then the labels must be placed after the inputs in the HTML */
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
 
  
/* Focus & populated label styling */
.FlowupLabels .fl_wrap.focused .fl_label,
.FlowupLabels .fl_wrap.populated .fl_label,
/* and graceful degradation */
.no-js .FlowupLabels .fl_label {
  /* Can change */
  top: 0;
  font-size: 15px;
  color: #555;
}
.FlowupLabels .fl_wrap.focused .fl_label {
  /* Can change */
  color:  #4c285e;
}

.FlowupLabels .form-btn{
  width: 100%;
  margin: 100px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rf_submit {
  width: 10%;
  text-align: center;
  background-color: #B60A16;
  border-radius: 4px;
  border: 1px solid #B60A16;
  color:#fff;
  font-size: 18px;
  padding: 5px 10px;
  display: block;
  margin: 0 0 0 15px;
}

.rf_reset {
  width: 10%;
  text-align: center;
  background-color: #666;
  border-radius: 4px;
  border: 1px solid #666;
  color:#fff;
  font-size: 18px;
  padding: 5px 10px;
  display: block;
}

.FlowupLabels textarea {
  border: none;
  resize: none;
  min-height: 100px;
}