/*
 * 8alien Affiliates System – Login & Register styles
 *
 * TODO: Replace placeholder colors / logo references with final brand assets
 *       once the full design is provided.
 *
 * Mirrors the structural pattern of loginmoozi.css. Dark space/alien theme
 * with cyan accent color — adjust as needed.
 */

/* -- Page background -- */
body.lg-form {
  background: #0a0a14 url('/assets/images/8alien-bg.webp') center center / cover no-repeat fixed;
  min-height: 100vh;
}

/* -- Login card -- */
.logins {
  background: rgba(10, 12, 30, 0.88) !important;
  border: 1px solid #1a2a4a;
  border-radius: 8px;
}

/* -- Logo spacing -- */
.shensports-logo {
  display: block;
  text-align: center;
  margin-bottom: 8px;
}

/* -- Input fields -- */
.login-inputs,
.md-input {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid #1e3a5f !important;
  border-radius: 4px !important;
  color: #e0e8ff !important;
  width: 100%;
  padding: 8px 12px;
  margin-top: 4px;
}

.login-inputs::placeholder,
.md-input::placeholder {
  color: #5a6a8a;
}

.login-inputs:focus,
.md-input:focus {
  border-color: #00c8ff !important;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 200, 255, 0.35);
}

/* -- Labels -- */
.labels,
.label,
span.label {
  color: #a0b8d8 !important;
  background: transparent !important;
  font-family: sans-serif;
  font-size: 14px;
}

/* -- Primary button -- */
.btn.primary,
button.submit-button {
  background: linear-gradient(135deg, #0055aa, #00c8ff) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  padding: 10px 0;
  transition: opacity 0.2s;
}

.btn.primary:hover,
button.submit-button:hover {
  opacity: 0.88;
}

/* -- Divider -- */
hr {
  border-top-color: #1e2e4a !important;
}

/* -- Alert tweaks -- */
.alert-danger  { background: rgba(180, 30, 30,  0.55); border-color: #c04040; color: #ffa0a0; }
.alert-success { background: rgba(20,  140, 60,  0.55); border-color: #2a8a4a; color: #a0ffa0; }

/* -- Forgot-password link -- */
a.text-primary { color: #00c8ff !important; }

/* -- Select -- */
select.md-input option {
  background: #0d1428;
  color: #e0e8ff;
}

/* -- Form rows -- */
.form-rows {
  margin-bottom: 14px;
  color: #c0d0e8;
  font-family: sans-serif;
  font-size: 14px;
}

/* -- Checkbox -- */
input[type="checkbox"] {
  accent-color: #00c8ff;
}
