.login-wrap {
  min-height: calc(100vh - 52px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: radial-gradient(ellipse at 50% 30%, rgba(79,195,247,0.05) 0%, transparent 60%);
}

.login-box {
  width: 100%;
  max-width: 420px;
}

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

.login-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}

.login-subtitle {
  font-size: 0.85rem;
  color: var(--eve-text-dim);
}

.eve-login-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, #1a3a5c, #0d2440);
  border: 1px solid var(--eve-accent);
  border-radius: 4px;
  color: var(--eve-accent);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s;
  margin-bottom: 20px;
}

.eve-login-btn:hover {
  background: var(--eve-highlight);
  box-shadow: 0 0 20px rgba(79,195,247,0.2);
}

.eve-logo {
  width: 28px;
  height: 28px;
  background: var(--eve-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #000;
  font-size: 0.8rem;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--eve-text-dim);
  font-size: 0.78rem;
  letter-spacing: 1px;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--eve-border);
}

.info-note {
  font-size: 0.8rem;
  color: var(--eve-text-dim);
  text-align: center;
  line-height: 1.6;
  margin-top: 20px;
  padding: 12px;
  border: 1px solid var(--eve-border);
  border-radius: 3px;
}

.info-note a { color: var(--eve-accent); }
