/* public_html/RoVorp/auth.css */
/* ─── Dark Auth Page Overrides ─── */

/* Hide global header and footer */
.site-header,
.site-footer {
  display: none !important;
}

/* Full-page centering */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: center !important;
  background: #000 !important;
  color: #ccc !important;
  font-family: 'Inter', sans-serif !important;
}

/* Auth container styling */
.auth-container {
  width: 100%;
  max-width: 400px;
  margin: 4rem auto 2rem auto;
  padding: 2rem;
  background: #111 !important;
  border: 1px solid #222 !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.8) !important;
}

/* Tabs styling */
.auth-tabs {
  display: flex;
  margin-bottom: 1.5rem;
}
.auth-tabs a {
  flex: 1;
  text-align: center;
  padding: 0.75rem 1rem;
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color .3s, border-color .3s;
}
.auth-tabs a.active {
  color: #66c2ff;
  border-color: #66c2ff;
}

/* Flash & error messages */
.error, .success {
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-left: 4px solid;
  background: #111 !important;
}
.error {
  border-color: #ff5c5c !important;
  color: #ddd !important;
}
.success {
  border-color: #66c2ff !important;
  color: #000 !important;
}

/* Form inputs */
.auth-form .form-group {
  margin-bottom: 1rem;
}
.auth-form label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: #ccc;
}
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
  width: 100%;
  padding: 0.65rem;
  background: #000;
  border: 1px solid #222;
  border-radius: 4px;
  color: #ddd;
  font-size: 1rem;
  transition: border-color .3s, box-shadow .3s;
}
.auth-form input:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 8px rgba(0,102,204,0.7);
}

/* Show/Hide password toggle */
.password-wrapper {
  position: relative;
}
.show-password-toggle {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #66c2ff;
  font-size: 0.85rem;
  cursor: pointer;
}

/* Remember me & forgot link */
.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.checkbox-group input[type="checkbox"] {
  transform: scale(1.2);
  margin-right: 0.5rem !important;
}
.link {
  display: block;
  text-align: right;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: #66c2ff;
  text-decoration: none;
}
.link:hover {
  text-decoration: underline;
}

/* Buttons */
.btn {
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(145deg,#004080,#002040);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background .3s, transform .3s, box-shadow .3s;
}
.btn:hover {
  background: linear-gradient(145deg,#0066cc,#004080);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,102,204,0.7);
}

/* Hide unintended range inputs */
.auth-container input[type="range"] {
  display: none !important;
}
