.login-container {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

.login-magazine-aside {
  flex: 1;
  background: linear-gradient(180deg, rgba(10, 10, 9, 0.2) 0%, rgba(5, 5, 5, 0.85) 100%), radial-gradient(ellipse 80% 60% at 30% 20%, rgba(255, 106, 42, 0.28), transparent 60%), #0b0b0a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.login-aside-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  z-index: 10;
  letter-spacing: -0.3px;
}

.login-aside-brand i { color: var(--accent); }
.login-aside-brand .brand-symbol { width: 30px; height: 30px; display: block; }
.signup-header .brand-symbol { width: 28px; height: 28px; display: block; }

.login-aside-hero { z-index: 10; margin-top: auto; margin-bottom: auto; max-width: 520px; }

.login-aside-hero h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}

.login-aside-hero p { font-size: 14.5px; color: rgba(255, 255, 255, 0.7); line-height: 1.6; }
.login-aside-footer { z-index: 10; font-size: 11px; color: rgba(255, 255, 255, 0.4); }

.login-form-area {
  width: 460px;
  background-color: var(--bg-card);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px;
  border-left: 1px solid var(--border-color);
}

.login-form-header { margin-bottom: 28px; }
.login-form-header h2 { font-size: 22px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
.login-form-header p { font-size: 12.5px; color: var(--text-sub); }

.login-form-group { margin-bottom: 18px; }
.login-form-group label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 8px; color: var(--text-main); }

.login-form-footer { margin-top: 24px; text-align: center; font-size: 12.5px; color: var(--text-sub); }
.login-form-footer a { color: var(--text-main); text-decoration: none; font-weight: 700; }
.login-form-footer a:hover { text-decoration: underline; }

.login-msg {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.login-msg.err { background-color: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.25); color: #f87171; }
.login-msg.info { background-color: rgba(96, 165, 250, 0.1); border: 1px solid rgba(96, 165, 250, 0.25); color: #93c5fd; }

@media (max-width: 900px) {
  .login-magazine-aside { display: none; }
  .login-form-area { width: 100%; border-left: none; padding: 32px; }
}
