.login-outer {
  background: linear-gradient(180deg, #001731 0%, #002B5E 100%) !important;
}

.login-card {
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.25), 0 1.5px 6px 0 rgba(17, 28, 67, 0.12);
}

body {
  background: linear-gradient(180deg, #001731 0%, #002B5E 100%) !important;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

#particles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.login-outer {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  background: transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 48px 0 rgba(28, 112, 234, 0.25), 0 2px 24px 0 rgba(28, 112, 234, 0.18);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 370px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #1e3c72 60%, #e60980 100%);
  border-radius: 50%;
  opacity: 0.13;
  z-index: 0;
}

.login-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.login-logo img {
  width: 48px;
  height: 48px;
  margin-right: 10px;
}

.login-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1e3c72;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.login-subtitle {
  text-align: center;
  color: #b0b0b8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.form-label {
  font-weight: 500;
  color: #1e3c72;
  margin-bottom: 0.3rem;
}

.form-control {
  border-radius: 10px;
  border: 1px solid #1c70ea;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background: #000;
  color: #fff;
  transition: border-color 0.2s;
}

.form-control:focus {
  border-color: #1c70ea;
  background: #000;
  color: #fff;
  box-shadow: 0 0 0 2px rgba(28, 112, 234, 0.2);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.input-group {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 2;
  color: #6c757d;
  font-size: 1.1rem;
}

.login-btn {
  width: 100%;
  background: #1c70ea;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.75rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: background 0.2s;
  box-shadow: 0 2px 12px rgba(28, 112, 234, 0.2);
}

.login-btn:hover {
  background: #2d8af0;
}

.login-error {
  color: #e60980;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}

@media (max-width: 500px) {
  .login-card {
    padding: 1.5rem 0.7rem 1.2rem 0.7rem;
  }
}

.login-copyright {
  text-align: center;
  color: #b0b0b8;
  font-size: 14px;
  margin-top: 20px;
}