
  
  #togglePassword{
    position: fixed; 
    top: 110px; 
    margin-left: 300px; 
    cursor: pointer;}

  /*Estilo para o alert box */
  /* The alert message box */
 .alert {
    position: relative;
    top: 50px;
    padding: 20px;
    background-color: #f44336; /* Red */
    color: white;
    margin-bottom: 15px;
  }

  .alert_success {
    position: relative;
    top: 50px;
    padding: 20px;
    background-color: #489e4c; /* Green */
    color: white;
    margin-bottom: 15px;
  }
  
  /* The close button */
  .closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  /* When moving the mouse over the close button */
  .closebtn:hover {
    color: black;
  }



  .cancel{
    font-size: 13px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    color: #ececec;
    text-decoration: underline;
    transition: all 0.3s;
  }
  
input {
  outline: none !important;
}

  
  section#formHolder {
    padding: 50px 0;
  }
  
  .form .form-peice {
    background: #252525;
    min-height: 480px;
    box-shadow: 3px 3px 10px rgba(91, 230, 37, 0.2);
    color: #b1bbb4;
    transition: all 0.9s cubic-bezier(1, -0.375, 0.285, 0.995);
    position: relative;
    left: 50%;
   
  
  }
  .form .form-peice.switched {
    transform: translateX(-100%);
  
  }
  .form form {
    padding: 0 40px;
    margin: 0;

  
  }
  .form form .form-group {
    margin-bottom: 5px;
    
  }
  .form form .form-group.hasError input {
    border-color: #f95959 !important;
  }
  .form form .form-group.hasError label {
    color: #f95959 !important;
  }
  .form form label {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    transform: translateY(40px);
    transition: all 0.4s;
    cursor: text;
    z-index: -1;
  }
  .form form label.active {
    transform: translateY(10px);
    font-size: 10px;
  }
  .form form label.fontSwitch {
    font-family: "Raleway", sans-serif !important;
    font-weight: 600;
  }
  .form form input:not([type="submit"]) {
    background: none;
    outline: none;
    border: none;
    display: block;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid #eee;
    color: #eee;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    z-index: 1;
  }
  
  .form form input:not([type="button"]) {
    background: none;
    outline: none;
    border: none;
    display: block;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid #eee;
    color: #eee;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    z-index: 1;
  }
  .form form input:not([type="submit"]).hasError {
    border-color: #f95959;
  }
  .form form span.error {
    color: #f95959;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    position: relative;
    bottom: -15px;
    right: 0;
    display: none;
  }
  .form form input[type="password"] {
    color: #f95959;
  }
  .form form .CTA {
    margin-top: 30px;
  }
  .form form .CTA input {
    font-size: 12px;
    text-transform: uppercase;
    padding: 5px 30px;
    background: #2fbd22;
    color: #fff;
    border-radius: 30px;
    margin-right: 20px;
    border: none;
    font-family: "Montserrat", sans-serif;
  }
  .form form .CTA a.switch {
    font-size: 13px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    color: #ececec;
    text-decoration: underline;
    transition: all 0.3s;
  }
  .form form .CTA a.switch:hover {
    color: #60bd22;
  }
  
  
 
  
  
  #formHolder {
      padding: 0;
    }
  #formHolder div.brand {
      min-height: 200px ;
    }
  #formHolder div.brand.active {
      min-height: 100vh ;
    }
  #formHolder div.brand .heading.active {
      top: 200px;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    #formHolder div.brand .success-msg p {
      font-size: 16px;
    }
    #formHolder div.brand .success-msg a {
      padding: 5px 30px;
      font-size: 10px;
    }
   #formHolder .form {
      width: 80vw;
      min-height: 500px;
      margin-left: 10vw;
    }
   #formHolder .form .form-peice {
      margin: 0;
      top: 0;
      left: 0;
      width: 100% ;
      transition: all 0.5s ease-in-out;
    }
  
  #formHolder .form .form-peice > form {
      width: 100% ;
      padding: 60px;
      left: 50%;
    }
  }
  
  