.login-section {
    padding-top: 20px;
    display: flex;
    align-items: center;
  }
.login-box {
    background-color: var(--block_background);
    border-radius: var(--block_radius);
    padding: 20px 20px 30px;
    width: 460px;
    margin: 0 auto 20px;
  }
  @media (max-width: 480px){
    .login-box{
        width: 100%;
    }
  }
  .login-box h1 {
    color: var(--main_text);
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    position: relative;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 26px;
  }
  .sign-in-orregister {
    margin: 0 15px;
    margin-top: 30px;
    display: flex;
    justify-content: center;
  }
  .sign-in-orregister p {
    margin-right: 15px;
    font-size: 12px;
    font-weight: bold;
    color: var(--secondary_text);
  }
  .sign-in-orregister .text-a {
    font-weight: bold;
    font-size: 12px;
  }
 
  /* @media (max-width: 480px){
    .login-box .error{
          margin-bottom: 40px !important;
      }
  } */
.half-box .form-group {
    width: calc(50% - 10px);
    margin-right: 20px;
    margin-left: 0;
    float: left;
  }
   .half-box .form-group:nth-child(2n) {
    margin-right: 0;
  }
  .half-box .code-input {
    width: calc(30% - 10px);
  }
  @media (max-width: 480px) {
    .half-box .code-input {
      width: calc(36% - 10px);
    }
  }
  .half-box .phone-input {
    width: calc(70% - 10px);
  }
  @media (max-width: 480px) {
   .half-box .phone-input {
      width: calc(64% - 10px);
    }
  }
  .login-box .checkbox-row {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }
  .login-box .checkbox-row .checkbox-style {
    float: left;
  }
  .login-box .checkbox-row > label {
    font-size: 12px;
    font-weight: normal;
    float: left;
    width: calc(100% - 40px);
    margin-left: 10px;
    margin-top: 5px;
  }
  .RegistrationWrap .box .login-box button {
    margin-top: 28px;
    display: inline-block;
}