/* [project]/src/app/login/login.css [app-client] (css) */
.login-container {
  background-color: #0f172a;
  background-image: radial-gradient(circle at top, #1e3a8a 0%, #0f172a 40%, #000 100%);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.login-container:before, .login-container:after {
  content: "";
  filter: blur(100px);
  z-index: 0;
  border-radius: 50%;
  position: absolute;
}

.login-container:before {
  background-color: #2563eb4d;
  width: 400px;
  height: 400px;
  top: -10%;
  right: -5%;
}

.login-container:after {
  background-color: #0891b233;
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
}

.login-box {
  -webkit-backdrop-filter: blur(20px);
  z-index: 10;
  background: #ffffff08;
  border: 1px solid #ffffff1a;
  border-radius: 24px;
  width: 100%;
  max-width: 420px;
  padding: 40px;
  animation: .5s ease-out forwards slideUp;
  position: relative;
  box-shadow: 0 25px 50px -12px #00000080;
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-icon-wrapper {
  background: linear-gradient(135deg, #2563eb 0%, #22d3ee 100%);
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  box-shadow: 0 10px 25px #2563eb66;
}

.login-icon-wrapper svg {
  color: #fff;
  width: 32px;
  height: 32px;
}

.login-title {
  color: #fff;
  letter-spacing: -.5px;
  margin-bottom: 6px;
  font-size: 26px;
  font-weight: 700;
}

.login-subtitle {
  color: #94a3b8;
  font-size: 14px;
}

.login-form {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.login-input-group {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.login-label {
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 500;
}

.login-input {
  color: #fff;
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  outline: none;
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  transition: all .3s;
}

.login-input::placeholder {
  color: #64748b;
}

.login-input:focus {
  background: #ffffff14;
  border-color: #3b82f680;
  box-shadow: 0 0 0 3px #3b82f633;
}

.login-error {
  color: #fca5a5;
  text-align: center;
  background: #ef44441a;
  border: 1px solid #ef444433;
  border-radius: 12px;
  padding: 12px;
  font-size: 13px;
}

.login-button {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(to right, #2563eb, #1d4ed8);
  border: none;
  border-radius: 12px;
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  transition: all .2s;
  box-shadow: 0 8px 20px #2563eb4d;
}

.login-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px #2563eb66;
}

.login-button:active:not(:disabled) {
  transform: translateY(0);
}

.login-button:disabled {
  cursor: not-allowed;
  box-shadow: none;
  opacity: .7;
  background: #64748b;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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