.scorpa-login {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.18), transparent 34%),
    linear-gradient(135deg, #061826 0%, #0b3148 52%, #052235 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  color: #0f172a;
}

.login-shell {
  width: min(1080px, calc(100% - 32px));
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.login-brand-panel {
  padding: 64px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(0, 91, 170, 0.35), rgba(255, 122, 0, 0.12)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.login-brand-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 18, 32, 0.86), rgba(3, 43, 68, 0.55));
}

.login-brand-panel > * {
  position: relative;
  z-index: 1;
}

.brand-badge {
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.95);
  color: white;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 28px;
}

.login-brand-panel h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.login-brand-panel p {
  max-width: 460px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

.login-card {
  background: rgba(255, 255, 255, 0.96);
  padding: 58px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-card h2 {
  margin: 0;
  font-size: 34px;
  color: #062033;
}

.login-subtitle {
  margin: 8px 0 32px;
  color: #64748b;
}

.login-card label {
  display: block;
  margin: 18px 0 8px;
  font-weight: 700;
  color: #334155;
}

.login-card input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 15px 16px;
  font-size: 16px;
  outline: none;
  background: #f8fafc;
  transition: 0.2s;
}

.login-card input:focus {
  border-color: #005baa;
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 91, 170, 0.12);
}

.login-btn {
  width: 100%;
  margin-top: 28px;
  padding: 15px 18px;
  border-radius: 14px;
  background: #ff7a00;
  color: white;
  border: none;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
}

.login-btn:hover {
  background: #e86f00;
}

.login-error {
  min-height: 22px;
  margin-top: 16px;
  color: #b91c1c;
  font-weight: 700;
}

@media (max-width: 820px) {
  .login-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .login-brand-panel {
    padding: 42px 28px;
  }

  .login-card {
    padding: 36px 28px;
  }
}