#login-page {
  height: 100vh;
  background-image: url('/wp-content/themes/phyrus/web/assets/images/login.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; }
  #login-page .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: var(--primary-color);
    opacity: 0.75;
    filter: brightness(0.4); }
  #login-page .login-box {
    z-index: 2;
    position: relative;
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    min-width: 30vw; }
    #login-page .login-box #logo {
      width: 250px;
      height: auto;
      margin: 0 auto;
      display: block; }
    #login-page .login-box .labels {
      margin: 20px 0; }
      #login-page .login-box .labels p {
        margin: 0;
        color: #bbb; }
    #login-page .login-box .form-input {
      border: solid 1px lightgray;
      margin-bottom: 15px;
      display: flex; }
      #login-page .login-box .form-input input {
        border: none;
        padding: 15px;
        font-weight: bold;
        flex: 1; }
      #login-page .login-box .form-input svg {
        width: 20px;
        height: 20px;
        color: gray;
        cursor: pointer; }
    #login-page .login-box .btn.submit {
      border-radius: 0;
      text-align: center;
      font-weight: bold;
      padding: 15px 0;
      text-transform: uppercase; }
    #login-page .login-box p.error {
      color: red;
      font-size: 14px;
      text-align: center; }
    #login-page .login-box a {
      font-weight: bold;
      color: var(--primary-color);
      text-decoration: underline; }
