@import '../../theme/index.less';


@loginRoot: ~'@{PrefixCls}-login';
@leftAndRightLoginRoot: ~'@{PrefixCls}-leftAndRight-login-root';

.@{loginRoot} {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  .formBody {
    width: 360px;
    padding: 24px 16px;
    box-shadow: 0 2px 4px 0 rgb(100 109 130 / 14%), 0 0 1px 0 rgb(100 109 130 / 10%);
    border-radius: 18px;
    background-color: #fff;
    .title {
      font-size: 1.125rem;
      font-weight: 500;
      display: flex;
      justify-content: center;
    }
  }
}


.@{leftAndRightLoginRoot} {
  width: 100%;
  height: 100%;
  overflow: hidden;
  .antd-waffle-left-container{
    display: inline-block;
    width: 70%;
    height: 100vh;
    min-height: 180px;
    margin: 0;
    padding: 0;
    .antd-waffle-left-slogan{
      max-width: 200px;
      margin: 20px 0 0 50px;
    }
  }

  .antd-waffle-right-container{
    position: relative;
    float: right;
    height: 100vh;
    width: 30%;
    .antd-waffle-wrapper{
      margin: 200px auto 0;
      width: 500px;
      display: flex;
      justify-content: center;
      .antd-waffle-logo{
        width: 200px;
        height: 40px;
        margin-top: 16px;
      }
      .antd-waffle-form-container{
        margin-top: 24px;
        width: 100%;
        min-width: 400px;
      }
    }
    .antd-waffle-statement{
      position: absolute;
      bottom: 0;
      width: 100%;
      text-align: center;
    }
  }
}