/*New Css 19/06/2021*/
/*Desktop*/
@media only screen and (min-width: 601px) {
  .login-form-bottom{
      width: 50% !important;
  }
  .line-button-mobile{
     display: none;
  }
  .line-button-desktop{
      width: 25% !important;
      background-color: #00b900 !important;
      border: 1px solid #00b900 !important;
      height: auto;
      padding-top: 17px;
      min-height: 74px;
      margin-left: 10px !important;
      display: block;
  }
  .login-button{
      width: 22% !important;
      margin-right: 10px;
      height: auto;
      min-height: 74px;
  }
  hr.orlinhr {
        display: none;
    }
}

/*Mobile*/
@media only screen and (max-width:600px){
  .login-form-bottom{
    width: 60% !important;
  }
  .line-button-mobile{
    display: block;
    background-color: #00b900 !important;
    border: 1px solid #00b900 !important;
    height: auto;
    padding: 0px;
    min-height: 40px;
    font-size: 22px !important;
  }
  .line-button-desktop{
    display: none;
  }
    .login-button {
    width: 38% !important;
    margin-right: 0px !important;
    height: auto;
    min-height: 74px;
    margin-bottom: 10px !important;
    font-size: 22px !important;
  }
  hr.orlinhr {
        margin: 0px 0px 5px 0px;
        border-top: 1px solid #f1f1f1 !important;
        display: block;
        line-height: 1em;
        position: relative;
        outline: 0;
        border: 0;
        color: black;
        text-align: center;
        /*height: 1.5em;*/
        opacity: .5;
        &:before {
            content: '';
            background: linear-gradient(to right, transparent, #818078, transparent);
            position: absolute;
            left: 0;
            top: 50%;
            width: 100%;
            height: 1px;
        }
        &:after {
            content: attr(data-content);
            position: relative;
            display: inline-block;
            color: black;
            padding: 0 .5em;
            line-height: 1.5em;
            color: #818078;
            background-color: #fcfcfa;
        }

    }
}