* {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  
  #global-input {
    margin-bottom: 30px;
  }
  #fstep-form {
    display: flexbox;
    border: 1px solid #2EE59D;
    border-radius: 25px;
    width: 600px;
    background-color: white;
    box-shadow: 0px 1px 30px 1px rgba(0, 0, 0, 0.3)
  }
  #fstep-input {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  #fstep-input .input-item  {
    display: flex;
    flex-direction: column;
  }
  
  #fstep-input .input-item label,
  #fstep-input .input-item input {
    display: flex;
    flex-direction: column;
  }
  #fstep-input .input-item label {
    margin-top: 20px;
    margin-bottom: 5px;
    font-weight: 400;
  }
  label {
    color: rgba(0,0,0,0.7);
    font-size: 15px;
    margin-left: 5px;
  }
  
  /* Two Fields / 1 Row */
  #fstep-input .row-1_2 {
    display: flex;
  }
  #fstep-input .row-1_2 .input-item.one {
    flex: 1
  }
  #fstep-input .row-1_2 .input-item.two {
    flex: 2;
    margin-left: 10px;
  }
  /*Single field one item*/
  #fstep-input .row-1 {
    display: flex;
  }
  #fstep-input .row-1 .input-item.one {
    width: 60%;  
  }
  
  input {
  border-radius: 999px;
  }
  textarea {
    border-radius: 20px;
  }
  input,
  textarea {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: rgba(0, 0, 0,.6);
    font-size: 15px;
    background-color: rgba(204, 249, 231,.2);
    border: 1px solid rgba(0,0,0,0.3);
    transition: all 0.1s ease 0s;
  }
  #fstep-input .input-item textarea {
    width: 100%;
  }
  
  input:active,
  textarea:active,
  input:focus,
  textarea:focus {
    color: rgba(0,0,0,0.7);
    outline: 1px solid rgba(0, 0, 0, 0.6);
    background-color: rgba(204, 249, 231,0.5);
  }
  
  /*Step Editor Buttons*/
  .action-btns {
    margin-top: 30px;
    width: 100%;
    margin-bottom: -1px;
    background-color: white;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  .fstep-cancel,
  .fstep-save {
    width: 50%;
    height: 40px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.2s ease 0s;
  }
  .fstep-cancel {
    border-bottom-left-radius: 25px;
    background-color: rgba(255, 46, 46, 0.8);
    color: white;
  }
  .fstep-save {
    border-bottom-right-radius: 25px;
    background-color: rgba(46, 229, 157, 0.7);
    color: rgba(0,0,0,0.6);
  }
  .fstep-cancel:hover,
  .fstep-save:hover,
  .fstep-cancel:active,
  .fstep-save:active {
    transform: translateY(-5px);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
  }
  .fstep-cancel:hover,
  .fstep-cancel:active {
    background-color: rgba(255, 46, 46, 1);
  }
  .fstep-save:hover,
  .fstep-save:active {
    background-color: rgba(46, 229, 157, 1);
  }