.login-container {
  display: flex;
  max-width: 1100px;
  width: 100%;
  background: linear-gradient(135deg, rgba(15, 16, 30, 0.8) 0%, rgba(9, 10, 25, 0.9) 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
}

.login-visual {
  flex: 1;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.login-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(83, 243, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(155, 123, 255, 0.1) 0%, transparent 50%);
}

.hologram {
  width: 100%;
  max-width: 400px;
  height: 300px;
  background: linear-gradient(135deg, rgba(83, 243, 255, 0.1) 0%, rgba(155, 123, 255, 0.1) 100%);
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(83, 243, 255, 0.3);
  box-shadow: 0 0 30px rgba(83, 243, 255, 0.2);
}
.hologram::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(83, 243, 255, 0.1), transparent);
  animation: rotate 10s linear infinite;
}

.hologram-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.hologram-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hologram-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.login-form-container {
  flex: 1;
  max-width: 500px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.login-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.login-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--fg);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(5, 6, 13, 0.7);
  border: 1px solid var(--stroke);
  border-radius: 10px;
  color: var(--fg);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(83, 243, 255, 0.2);
}
.form-input::placeholder {
  color: var(--muted);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.remember-me input {
  accent-color: var(--accent);
}

.forgot-password {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}
.forgot-password:hover {
  text-shadow: 0 0 8px rgba(83, 243, 255, 0.7);
}

.login-btn {
  width: 100%;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  color: var(--muted);
}
.divider::before {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--stroke);
}
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--stroke);
}
.divider span {
  padding: 0 1rem;
  font-size: 0.9rem;
}

.social-login {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem;
  background: rgba(5, 6, 13, 0.7);
  border: 1px solid var(--stroke);
  border-radius: 10px;
  color: var(--fg);
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-btn:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.register-link {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}
.register-link a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.register-link a:hover {
  text-shadow: 0 0 8px rgba(83, 243, 255, 0.7);
}

/* Background Effects */
.bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(83, 243, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(83, 243, 255, 0.05) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size), var(--grid-size) var(--grid-size);
  opacity: 0.3;
}

.bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px 400px at 20% 20%, rgba(83, 243, 255, 0.15), transparent 60%), radial-gradient(900px 500px at 80% 80%, rgba(155, 123, 255, 0.1), transparent 60%);
  opacity: 0.7;
}

.bg-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 100%), radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.6) 0%, transparent 100%), radial-gradient(1px 1px at 60% 20%, rgba(255, 255, 255, 0.7) 0%, transparent 100%), radial-gradient(1px 1px at 80% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
  background-size: 400px 400px, 500px 500px, 600px 600px, 700px 700px;
  animation: twinkle 20s infinite linear;
}

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