/* [project]/app/(login)/login/login.css [app-client] (css) */
.login-container {
  background: linear-gradient(-190deg, #0f182d 0%, #192e6b 80%, #1e3988 100%);
  width: 100%;
  height: 100%;
}

.login-form-wrapper {
  position: relative;
}

.animated-border-box, .animated-border-box-glow {
  z-index: 0;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

.animated-border-box-glow {
  filter: blur(20px);
  overflow: hidden;
}

.animated-border-box:before, .animated-border-box-glow:before {
  content: "";
  z-index: -2;
  text-align: center;
  background-image: conic-gradient(#0000, #1976ed, #0000 25%);
  background-position: 0 0;
  background-repeat: no-repeat;
  width: 99999px;
  height: 99999px;
  animation: 6s linear infinite rotate;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)rotate(0);
}

.animated-border-box:after {
  content: "";
  z-index: -1;
  background: #fff;
  border-radius: 7px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  top: 5px;
  left: 5px;
}

@keyframes rotate {
  100% {
    transform: translate(-50%, -50%)rotate(1turn);
  }
}

.login-container ::selection {
  color: #fff;
  background-color: #1976ed80;
}

.login-container ::selection {
  color: #fff;
  background-color: #1976ed80;
}

/*# sourceMappingURL=app_%28login%29_login_login_8a7bda0a.css.map*/