    .page-wrapper {
      display: flex;
      background-image: url('/image/login-background.jpg');
      justify-content: space-between;
      height: 100vh;
      background-size: cover;
    }

    .left-panel-wrapper {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      width: 40%;
    }

    .left-panel {
      width: 80%;
      height: 480px;
    }

    .left-panel h1 {
      color: #fff;
      margin: 0;
      font-size: 65px;
      font-family: "SFProDisplay Heavy";
      line-height: 1.1;
    }

    .left-panel hr {
      color: #fff;
      width: 100px;
      margin-left: 0;
      border-top: 8px solid #00a023;
      margin-bottom: 30px;
    }

    .left-panel p {
      color: #fff;
      font-size: 30px;
      font-family: "SFProDisplay Heavy";
      line-height: 1.1;
    }

    .content-wrapper {
      display: flex;
      align-items: center;
      width: calc(100% - 80%);
      padding: 0 10px;
    }

    .right-panel-wrapper {
      display: flex;
      justify-content: center;
      width: 40%;
    }

    .right-panel {
      display: flex;
      justify-content: flex-end;
      width: 80%;
    }

    .logo-img-container {
      width: 250px;
    }
  
    .lk-form input{
        color: #31353c;
        background-color: #fff;
        border-radius: 3px;
        padding: 10px 20px;
        text-align: left;
        border: 1px solid #e2e5e5;
        margin-bottom: 20px;
        height: 47px;
        -webkit-transition: box-shadow .35s ease, border-color .35s ease;
        transition: box-shadow .35s ease, border-color .35s ease;
        font-size: 16px;
    }
       
    .lk-form button {
        padding: 7px 30px 7px;
        display: inline-block;
        font-size: 22px;
        border-radius: 3px;
        background: #00a023;
        color: #fff;
        text-align: center;
        cursor: pointer;
        border-color: #00a023;
        font-family: "SFProDisplay Heavy";
        margin: auto;
        border: none;
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .lk-form button:hover {
        color: #202020;
        background-color: #00B418;
    }
    
    label.remember:hover {
        text-decoration: underline;
    }
    
    a.forgot:hover {
       text-decoration: underline;
    }

    .lk-form {
        width: 280px;
    }
    
    .alert-danger{
        color: #696969;
        background-color: #f1d7a4;
        border-color: #ecc77a;
    }
    
    /* Валидируется клиентская вилидация, а мы ее просто отключаем */
    .help-block{
        display: none;
    }      
    
    .form-control:focus {
        border-color: #00a023;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 150, 14, 0.25);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 150, 14, 0.25);
    }
      
    .custom-checkbox {
        position: absolute;
        z-index: -1;
        opacity: 0;
    }

    .custom-checkbox+label {
        display: inline-flex;
        align-items: center;
        user-select: none;
    }
    
    .custom-checkbox+label::before {
      content: '';
      display: inline-block;
      width: 1.1em;
      height: 1.1em;
      flex-shrink: 0;
      flex-grow: 0;
      background-color: #fff;
      border: 1px solid #adb5bd;
      border-radius: 0.25em;
      margin-right: 0.5em;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: 50% 50%;
    }

    .custom-checkbox:checked+label::before {
      border-color: #00a023;
      background-color: #00a023;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
    }
    
    
    @media only screen and (max-width: 480px){
        .page-wrapper{
           flex-direction: column;
           justify-content: flex-start;
           height: 900px;
        }  
        
        .left-panel-wrapper {
            width: 80%;
            margin-bottom: 30px;
            justify-content: flex-start;
            order: 2;
        }
        
        .left-panel {
            height: auto;
            margin-left: 20px;
        }
        
        .left-panel h1 {
            font-size: 45px;
        }

        .left-panel hr {
            margin-top: 10px;
            margin-bottom: 10px;
        }

        .left-panel p {
            font-size: 30px;
        }

        .content-wrapper{
            width: 100%;
            justify-content: center;
            order: 3;
        }
        
        .right-panel-wrapper{
            width: 100%;
            margin-bottom: 50px;
            justify-content: flex-end;
            order: 1;
        }
        
        .right-panel {
            margin-right: 20px;
        }
        
        .logo-img-container {
            width: 100px;
        }
    }
