/* CSS RESET */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

/* CSS RESET */
.main {
  width: 100%;
  height: 100vh;
  background-image: url("./imgs/bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
}

.blur-overlay {
  width: inherit;
  height: inherit;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.304);
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  flex-direction: row;
  gap: 10rem;
}

.apps-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  flex-shrink: 0; /* Prevent Safari from shrinking */
  max-width: 450px; /* Constrain maximum width */
}

.logo-container {
  max-height: 100px;
  max-width: 100px;
}

.apps-container span {
  color: white;
}

.app-wrapper {
  display: flex;
  flex-direction: row;
  gap: 4rem;
}

.app-card {
  padding: 1rem;
  min-width: 200px;
  min-height: 250px;
  border-radius: 1rem;
  background-color: white;
  -webkit-box-shadow: 1px 9px 33px 9px rgba(0, 0, 0, 0.51);
  -moz-box-shadow: 1px 9px 33px 9px rgba(0, 0, 0, 0.51);
  box-shadow: 1px 9px 33px 9px rgba(0, 0, 0, 0.51);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.qr-container {
  width: 100%;
  max-height: 200px;
  padding-top: 12px;
}

.qr-img {
  width: 100%;
  height: 160px;
}

.login-container {
  padding: 2rem;
  min-width: 450px;
  height: fit-content;
  border-radius: 1rem;
  background-color: white;
  -webkit-box-shadow: 1px 9px 33px 9px rgba(0, 0, 0, 0.51);
  -moz-box-shadow: 1px 9px 33px 9px rgba(0, 0, 0, 0.51);
  box-shadow: 1px 9px 33px 9px rgba(0, 0, 0, 0.51);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.helpdesk {
  color: gray;
}

.helpdesk a {
  color: grey;
  text-decoration: none;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem 0;
}

.input-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 6px;
}

input {
  padding: 8px;
  border-radius: 3px;
  border: 2px solid rgb(185, 184, 184);
}

button {
  width: 100%;
  background: black;
  color: white;
  padding: 8px 0;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
  font-style: bold;
  cursor: pointer;
}

.login-bottom {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: grey;
}

.login-bottom .for-clients {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: grey;
  text-decoration: none;
}

a {
  color: grey;
}

@media screen and (max-width: 600px) {
  .main {
    width: 100%;
    height: 100%;
  }
  .container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 3rem;
    padding-top: 3rem;
  }
  .login-container {
    min-width: 300px;
    width: 300px;
    margin: 10px;
    padding: 15px;
  }
  .app-wrapper {
    gap: 2rem;
  }
  .apps-container {
    gap: 5rem;
    padding-bottom: 1rem;
    width: 370px;
  }
  .app-wrapper {
    flex-direction: column;
  }
}
@media screen and (max-width: 1120px) and (min-width: 1020px) {
  .container {
    gap: 3rem;
  }
}
@media screen and (max-width: 1020px) and (min-width: 600px) {
  .main {
    width: 100%;
    height: 100%;
  }
  .container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 3rem;
    padding-top: 3rem;
  }
  .login-container {
    min-width: 550px;
    width: 550px;
    padding: 20px;
  }
  .app-wrapper {
    gap: 2rem;
  }
  .apps-container {
    gap: 5rem;
    padding-bottom: 1rem;
    width: 370px;
  }
}
#login-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #131313;
}

@keyframes animate {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 35px 35px;
  }
}
div.layer {
  position: absolute;
  left: 50%;
  top: 50%;
  background: white;
  width: 140px;
  height: 250vh;
  box-shadow: -10px 0 40px rgb(0, 0, 0), inset 10px 0 40px rgb(0, 0, 0), inset -10px 0 10px rgba(255, 255, 255, 0.25), inset 10px 0 10px rgba(255, 255, 255, 0.25), 0 0 50px rgba(0, 0, 0, 0.1);
  animation: animate 2s infinite;
}

div.layer1 {
  background: #222222 radial-gradient(#6dff72 9px, #000000 9px, #000000 13px, transparent 13px);
  background-size: 35px 35px;
  transform: translate(-50%, -50%) rotate(45deg);
}

div.layer2 {
  background: #222222 radial-gradient(#db0aff 9px, #000000 9px, #000000 13px, transparent 13px);
  background-size: 35px 35px;
  transform: translate(-50%, -38%) rotate(45deg);
}

div.layer3 {
  background: #222222 radial-gradient(#03a9f4 9px, #000000 9px, #000000 13px, transparent 13px);
  background-size: 35px 35px;
  transform: translate(-50%, -62%) rotate(45deg);
}

div.layer4 {
  background: #222222 radial-gradient(#6dff72 9px, #000000 9px, #000000 13px, transparent 13px);
  background-size: 35px 35px;
  transform: translate(-50%, -50%) rotate(-45deg);
}

div.layer5 {
  background: #222222 radial-gradient(#db0aff 9px, #000000 9px, #000000 13px, transparent 13px);
  background-size: 35px 35px;
  transform: translate(-50%, -38%) rotate(-45deg);
}

div.layer6 {
  background: #222222 radial-gradient(#03a9f4 9px, #000000 9px, #000000 13px, transparent 13px);
  background-size: 35px 35px;
  transform: translate(-50%, -62%) rotate(-45deg);
}

/*# sourceMappingURL=login.css.map */
