@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  font-family: "Poppins", sans-serif;
}

.app {
  width: 100%;
}

.app-container {
  width: 100%;
}

.app-banners {
  display: none;
}

.app-login-container {
  width: 100%;
  padding: 1rem;
  background: url("../images/mobile-banner.png") top left no-repeat;
  background-size: cover;
  background-position: center;
}

.app-login {
  width: 100%;
  max-width: 570px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 8px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.app-brand-logo {
  width: 100%;
}

.app-brand-logo img {
  width: 100%;
  /* max-width: 300px; */
  margin: 0 auto;
  display: block;
  height: auto;
}

.app-form {
  width: 100%;
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
}

.app-store-link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.app-store-link a {
  display: block;
  width: 100%;
  text-align: center;
}

.app-store-link a img {
  width: 100%;
  max-width: 150px;
  height: auto;
}

.app-copyrights {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
}

.app-copyrights p,
.app-copyrights h6 {
  text-align: center;
}

.app-welcome-message {
  width: 100%;
}

.app-welcome-message {
  font-size: 18px;
  margin-bottom: 2rem;
}

.form-control {
  background: #f2f2f2;
}

.form-select {
  background-color: #f2f2f2;
}

@media (min-width: 1200px) {
  .app {
    height: 100vh;
    overflow: hidden;
  }

  .app-container {
    display: grid;
    height: 100%;
    grid-template-columns: 60% 40%;
  }

  .app-banners {
    display: block;
  }

  .banner-carousel,
  .slick-list {
    height: 100%;
  }

  .sliders,
  .sliders img {
    width: 100%;
    height: 100vh;
  }

  .app-login-container {
    background: #fff;
  }

  .app-login {
    gap: 1rem;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    border: none;
    padding: 16px;
    height: 100vh;
  }

  .app-store-link {
    flex-direction: row;
  }

  .app-store-link a {
    width: auto;
  }

  .app-store-link a img {
    max-width: 100px;
  }

  .app-copyrights {
    flex: auto;
    justify-content: flex-end;
    gap: 0;
  }

  .app-brand-logo img {
    width: 100%;
    height: auto;
  }

  .app-copyrights p img {
    max-width: 100px;
  }
}

@media (min-width: 1700px) {
  .app-login {
    gap: 4rem;
    padding: 32px 16px;
  }

  .app-copyrights p img {
    max-width: 100%;
  }

  .app-store-link a img {
    max-width: 100%;
  }
}
