/* Auth styles aligned with assets_old/css/style.css */
:root {
  --jupitronx-green-neon: #ff7a00;
  --jupitronx-green-primary: #ff7a00;
  --jupitronx-green-dark: #6b2e00;
  --jupitronx-emerald-dark: #4a2f00;
  --jupitronx-deep-background: #000;
  --jupitronx-charcoal: #2a160a;
  --jupitronx-white: #ffffff;
  --jupitronx-mint-white: #fff9f3;
  --jupitronx-gradient-hero: linear-gradient(90deg, #ff7a00, #f2b61a);
  --jupitronx-gradient-panel: linear-gradient(180deg, #4a2700, #170d00);
  --jupitronx-border-radius: 12px;
}

body {
  background-color: var(--jupitronx-deep-background);
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgb(245 135 0 / 10%) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 80% 80%, rgb(197 93 0 / 10%) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgb(107 60 0 / 10%) 0%, transparent 50%);
  color: var(--jupitronx-mint-white);
  font-family:
    "Archivo",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url('../images/background.jpg') center/cover; */
  opacity: 0.3;
  z-index: -2;
}

.btn {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  padding: 14px 20px;
  font-size: 10px;
  border-radius: 0px;
  transition: all 0.3s ease;
  width: 100%;
  border: none;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, #ff7a00, #ff3d00);
  color: #ffffff;
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(245, 106, 0, 0.3);
  transform: scale(1.05);
}

.card {
  border-radius: 16px;
  padding: 40px;

  position: relative;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(22, 14, 7, 0.95),
    rgba(12, 8, 3, 0.98)
  );
  box-shadow:
    0 24px 80px rgba(255, 100, 0, 0.13),
    0 0 0 1px rgba(255, 122, 0, 0.15);
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--jupitronx-mint-white);
  font-weight: 600;
}

.form-input {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  background: var(--jupitronx-charcoal);
  border: 2px solid var(--jupitronx-green-dark);
  border-radius: var(--jupitronx-border-radius);
  color: var(--jupitronx-mint-white);
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: var(--jupitronx-green-primary);
  box-shadow: 0 0 20px rgba(0, 245, 108, 0.3);
}

.password-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.password-wrapper .form-input {
  padding-right: 45px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--jupitronx-mint-white);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  z-index: 10;
}

.password-toggle:hover {
  color: var(--jupitronx-green-neon);
}

.password-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--jupitronx-border-radius);
  margin-bottom: 1.5rem;
}

.alert-success {
  background: rgba(0, 245, 108, 0.1);
  border: 1px solid var(--jupitronx-green-primary);
  color: var(--jupitronx-green-neon);
}

.alert-error {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid #ff0000;
  color: #ff6b6b;
}

.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-card {
  max-width: 500px;
  width: 100%;
}

.auth-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-logo h1 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--jupitronx-green-neon);
  margin-bottom: 0.5rem;
}

.text-muted {
  color: #a07850;
}
