body {
  background-image: url(../img/loginBody.jpg);
  background-color: #222527;
  background-size: cover;
  background-blend-mode: overlay;
  background-position: center right;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
  /* Container Fluid Utility */
  .container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  header {
    /* background: #1884c5; */
    color: #fff;
    padding: 20px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;

    /* &::before {
      content: '';
      position: absolute;
      bottom: -120px;
      left: 0;
      right: 0;
      height: 140px;
      background-image: url(../img/lh.png);
      background-size: 100% 100%;
      background-repeat: no-repeat;
    } */
    .logo-wrapper {
      position: relative;
      .logo {
        position: absolute;
        left: 0;
      }
    }
  }

  main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    /* margin-top: 200px;
    margin-bottom: 200px; */
    blockquote {
      color: #fff;
      text-align: center;
    }
    h1 {
      font-weight: 700;
      color: #fff;
      text-align: center;
    }
    form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 2rem;
      .input-icons {
        position: relative;
        svg {
          position: absolute;
          top: 50%;
          transform: translate(50%, -50%);
        }
        input {
          width: 100%;
          border-radius: 5px;
          padding: 0.5rem 1rem;
          border: 1px solid #ffffff;
          background-color: #29394a;
          text-align: center;
          color: #e5e5e5;

          &::placeholder {
            color: #e5e5e5;
            font-size: 1rem;
          }
        }
        .password-show-toggle {
          position: relative;
          svg {
            position: absolute;
            right: 0;
            transform: translate(-50%, -50%);
          }
        }
      }

      .submit-button {
        display: flex;
        justify-content: center;
        button {
          background-color: #0285c6;
          color: #fff;
          border: 1px solid #0285c6;
          border-radius: 25px;
          padding: 0.5rem 1rem;
          width: 50%;
          cursor: pointer;
        }
      }

      .alert {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        color: #e5e5e5;
        font-size: 1rem;
        font-weight: 500;
      }
    }
  }

  footer {
    background: #1884c5;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;

    &::before {
      content: "";
      position: absolute;
      bottom: 40px;
      left: 0;
      right: 0;
      height: 140px;
      background-image: url(../img/lf.png);
      background-size: 100% 100%;
      background-repeat: no-repeat;
    }
  }
  .snackbar {
    width: 90%;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 16px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .snackbar.show {
    opacity: 1;
    visibility: visible;
  }

  .snackbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .snackbar-content p {
    margin: 0;
    margin-right: 16px;
  }

  .snackbar-content button {
    margin-left: 8px;
    padding: 8px 16px;
    background-color: #fff;
    color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    &#dismiss-btn {
      padding: 0;
      margin: 0;
      position: absolute;
      top: 0;
      left: 100%;
      transform: translate(-50%, -50%);
    }
  }
  .ios-install-snackbar {
    width: 90%;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 16px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .ios-install-snackbar.show {
    opacity: 1;
    visibility: visible;
  }
}
