/* [project]/src/app/login/login.css [app-client] (css) */
@keyframes float {
  0%, 100% {
    opacity: .3;
    transform: translateY(0)scale(1);
  }

  50% {
    opacity: .5;
    transform: translateY(-20px)scale(1.08);
  }
}

.login-particle {
  animation: 4s ease-in-out infinite float;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

input[type="text"]:focus, input[type="password"]:focus {
  box-shadow: 0 0 0 3px #4a6cf71a;
  background: #fff !important;
  border-color: #4a6cf7 !important;
}

input::placeholder {
  color: #a3aed0;
  font-size: 13px;
}

button[type="submit"]:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px #4a6cf759;
}

button[type="submit"]:not(:disabled):active {
  transform: translateY(0);
  box-shadow: 0 2px 8px #4a6cf740;
}

.login-page-wrapper {
  background: linear-gradient(160deg, #edf0f7 0%, #e2e8f4 40%, #d9e0f0 100%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  padding: 40px 24px;
  display: flex;
}

.login-card {
  background: #fff;
  border-radius: 5px;
  width: 100%;
  max-width: 920px;
  min-height: 520px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 8px 40px #2b367414, 0 2px 12px #2b36740a;
}

.login-left-panel {
  background: linear-gradient(165deg, #2b3674 0%, #3b4da0 40%, #5b7fd6 100%);
  flex: 0 0 42%;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  position: relative;
  overflow: hidden;
}

.login-right-panel {
  background: #fff;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 48px 56px;
  display: flex;
}

.login-copyright {
  color: #a3aed0;
  text-align: center;
  letter-spacing: .01em;
  margin-top: 28px;
  font-size: 12px;
}

@media (max-width: 768px) {
  .login-page-wrapper {
    justify-content: center;
    padding: 24px 16px;
  }

  .login-card {
    border-radius: 16px;
    flex-direction: column;
    max-width: 440px;
    min-height: auto;
  }

  .login-left-panel {
    display: none !important;
  }

  .login-right-panel {
    padding: 40px 28px;
  }

  .login-copyright {
    margin-top: 20px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .login-page-wrapper {
    padding: 16px 12px;
  }

  .login-card {
    border-radius: 12px;
  }

  .login-right-panel {
    padding: 32px 24px;
  }
}

@media (max-width: 375px) {
  .login-right-panel {
    padding: 28px 20px;
  }
}

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