.form_main_row {
    padding: 0px;
    width: 100%;
    position: relative;
    background-color: var(--form-bg-color);
    display: flex;
}

.form_column { 
    width: 50%; 
    padding: 20px;
    text-align: center;
}

.form_field {
    text-align: left; 
    width: fit-content; 
    margin-left: auto; 
    margin-right: auto;
}

.form_field_error {
    color: red; 
    display: none;
    font-weight: bold;
    margin-bottom: 0.6em !important;
}

.btn {
    color: #fff;
    cursor: pointer;
    font-size:16px;
    font-weight: 400;
    line-height: 45px;
    margin: 0 0 2em;
    max-width: 160px; 
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%; 
    
    @media(min-width: 600px) {
        
      margin: 0 1em 2em;
      
    }
    
    &:hover { text-decoration: none; }
    
  }

.btn-4 {
    border: 1px solid;
    overflow: hidden;
    position: relative;
    
    span {
      z-index: 20;
    }
    
    &:after {
      background: #fff;
      content: "";
      height: 155px;
      left: -75px;
      opacity: .2;
      position: absolute;
      top: -50px;
      transform: rotate(35deg);
      transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
      width: 50px;
      z-index: -10;
    }
  }
  
  .btn-4:hover {
    
    &:after {
      left: 120%;
      transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    }
  }
 



@media only screen and (max-device-width: 480px) {
    .form_column {
        width: 88%;
        padding: 15px 50px;
    }

    .form_main_row { 
        flex-direction: column; 
    }
}