/* Apex Sports Group — Login Page Styles */

:root {
  --apex-dark: #121b34;
  --apex-red: #e32c3d;
  --apex-red-hover: #e91c32;
  --apex-gray: #6a6a6a;
  --apex-gray-hover: #555555;
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --font-sans: 'Inter', sans-serif;
}

.apex-login-page {
  font-family: var(--font-sans);
  background-color: #f5f5f5;
  min-height: 100vh;
  color: var(--apex-dark);
}

.apex-login-page .apex-login-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.apex-login-page .apex-hero-panel {
  background: var(--apex-dark);
  background-image: linear-gradient(180deg, rgba(18, 27, 52, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.apex-login-page .apex-hero-panel h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.apex-login-page .apex-hero-panel p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.apex-login-page .apex-brand-tagline {
  color: var(--apex-red);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.apex-login-page h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--apex-dark);
  margin-bottom: 1.5rem;
}

.apex-login-page .apex-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-sm);
  background: white;
  color: var(--apex-dark);
  transition: border-color 0.3s ease;
}

.apex-login-page .apex-form-input::placeholder {
  color: var(--apex-gray);
}

.apex-login-page .apex-form-input:focus {
  outline: none;
  border-color: var(--apex-red);
}

.apex-login-page .apex-btn-primary {
  display: block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: white;
  background-color: var(--apex-red);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.apex-login-page .apex-btn-primary:hover {
  background-color: var(--apex-red-hover);
  color: white;
  text-decoration: none;
}

.apex-login-page .apex-btn-secondary {
  display: block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-sans);
  color: white;
  background-color: var(--apex-gray);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-bottom: 0.5rem;
}

.apex-login-page .apex-btn-secondary:hover {
  background-color: var(--apex-gray-hover);
  color: white;
  text-decoration: none;
}

.apex-login-page .apex-link {
  color: var(--apex-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.apex-login-page .apex-link:hover {
  color: var(--apex-red);
}

.apex-login-page .apex-checkbox-label {
  font-size: 0.875rem;
  color: var(--apex-gray);
  cursor: pointer;
}

.apex-login-page .apex-checkbox-label input[type="checkbox"] {
  margin-right: 0.5rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--apex-red);
}

.apex-login-page .apex-divider {
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: 1.5rem 0;
}

/* Custom scrollbar */
.apex-login-page::-webkit-scrollbar {
  width: 10px;
}

.apex-login-page::-webkit-scrollbar-track {
  background: #f5f5f5;
}

.apex-login-page::-webkit-scrollbar-thumb {
  background: var(--apex-red);
  border-radius: 5px;
}

.apex-login-page::-webkit-scrollbar-thumb:hover {
  background: var(--apex-red-hover);
}
