/*
 * Pharmacist Signup & Login Pages - Premium CSS
 * Version 1.0.0 - Complete System
 */

:root {
  /* Color Palette */
  --pharm-blue: #0066cc;
  --pharm-blue-dark: #0052a3;
  --pharm-blue-light: #3385d6;
  --pharm-teal: #00b894;
  --pharm-teal-dark: #00a085;
  --pharm-purple: #8a2be2;
  --pharm-green: #28a745;
  --pharm-red: #dc3545;
  --pharm-orange: #fd7e14;
  --pharm-yellow: #ffc107;
  --pharm-cyan: #17a2b8;
  
  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #868e96;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --black: #000000;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--pharm-blue), var(--pharm-teal));
  --gradient-dark: linear-gradient(135deg, var(--gray-900), #1a1a2e);
  --gradient-light: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-serif: Georgia, 'Times New Roman', Times, serif;
  --font-mono: 'SF Mono', Monaco, 'Cascadia Mono', 'Roboto Mono', monospace;
  
  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Z-indices */
  --z-below: -1;
  --z-base: 1;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --z-toast: 1080;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--gray-800);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Container */
.pharm-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, 
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%);
}

/* Header */
.pharm-header {
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: var(--space-6) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.logo h1 {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.logo p {
  font-size: 0.875rem;
  color: var(--gray-600);
  font-weight: 500;
  margin-left: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-actions {
  display: flex;
  gap: var(--space-4);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-secondary {
  background: var(--white);
  color: var(--pharm-blue);
  border: 2px solid var(--pharm-blue);
}

.btn-secondary:hover {
  background: var(--pharm-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--pharm-blue);
  border: 2px solid var(--pharm-blue);
}

.btn-outline:hover {
  background: var(--pharm-blue);
  color: var(--white);
}

/* Signup & Login Containers */
.pharm-content,
.login-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
  min-height: calc(100vh - 80px);
}

/* Signup Card */
.signup-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  padding: var(--space-12);
  width: 100%;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  margin-right: var(--space-8);
}

.signup-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-primary);
}

.signup-card h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--space-2);
  text-align: center;
}

.subtitle {
  color: var(--gray-600);
  text-align: center;
  margin-bottom: var(--space-8);
  font-size: 1rem;
}

/* Form Styles */
#signupForm,
#loginForm {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-4) var(--space-4) var(--space-4) var(--space-10);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-800);
  background: var(--white);
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pharm-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
  background: var(--white);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-group .form-icon {
  position: absolute;
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-group input:focus + .form-icon {
  color: var(--pharm-blue);
}

/* Password Strength */
.password-strength {
  height: 4px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  margin-top: var(--space-2);
  overflow: hidden;
  position: relative;
}

.password-strength::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--pharm-red);
  transition: width var(--transition-slow);
  border-radius: var(--radius-full);
}

.password-strength.weak::before {
  width: 25%;
  background: var(--pharm-red);
}

.password-strength.fair::before {
  width: 50%;
  background: var(--pharm-orange);
}

.password-strength.good::before {
  width: 75%;
  background: var(--pharm-yellow);
}

.password-strength.strong::before {
  width: 100%;
  background: var(--pharm-green);
}

/* File Upload */
.file-upload {
  position: relative;
}

.file-upload input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: var(--z-base);
}

.file-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4);
  background: var(--gray-100);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
}

.file-label:hover {
  background: var(--gray-200);
  border-color: var(--pharm-blue);
}

.browse-btn {
  background: var(--pharm-blue);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
}

.file-label:hover .browse-btn {
  background: var(--pharm-blue-dark);
}

.form-group small {
  display: block;
  margin-top: var(--space-2);
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* Checkbox & Terms */
.terms-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.terms-group input[type="checkbox"] {
  margin-top: var(--space-1);
  accent-color: var(--pharm-blue);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.terms-group label {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.terms-group a {
  color: var(--pharm-blue);
  text-decoration: none;
  font-weight: 600;
}

.terms-group a:hover {
  text-decoration: underline;
}

/* Form Actions */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.form-actions .btn-primary {
  width: 100%;
  padding: var(--space-5) var(--space-6);
  font-size: 1rem;
  font-weight: 700;
}

.login-link {
  text-align: center;
  color: var(--gray-600);
  font-size: 0.9375rem;
}

.login-link a {
  color: var(--pharm-blue);
  font-weight: 600;
  text-decoration: none;
}

.login-link a:hover {
  text-decoration: underline;
}

/* Info Card */
.info-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  padding: var(--space-8);
  width: 100%;
  max-width: 400px;
}

.info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-6);
  text-align: center;
}

.benefits {
  list-style: none;
  margin-bottom: var(--space-8);
}

.benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  color: var(--gray-700);
  font-size: 0.9375rem;
}

.benefits li::before {
  content: '✓';
  color: var(--pharm-green);
  font-weight: 700;
  font-size: 1.125rem;
}

.requirements h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: var(--space-4);
}

.requirements ul {
  list-style: none;
  padding-left: var(--space-4);
}

.requirements li {
  padding: var(--space-2) 0;
  color: var(--gray-700);
  font-size: 0.9375rem;
  position: relative;
}

.requirements li::before {
  content: '•';
  color: var(--pharm-blue);
  font-weight: 700;
  position: absolute;
  left: -1rem;
}

/* Login Page */
.login-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  padding: var(--space-12);
  width: 100%;
  max-width: 450px;
  margin-right: var(--space-8);
}

.login-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.login-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--space-2);
}

.login-header p {
  color: var(--gray-600);
  font-size: 1rem;
}

/* Password Input */
.password-input {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  padding: var(--space-1);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.toggle-password:hover {
  color: var(--pharm-blue);
  background: var(--gray-100);
}

/* Form Options */
.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: calc(var(--space-4) * -1);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.9375rem;
  color: var(--gray-700);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--pharm-blue);
  width: 16px;
  height: 16px;
}

.forgot-link {
  color: var(--pharm-blue);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
}

.forgot-link:hover {
  text-decoration: underline;
}

/* Login Divider */
.login-divider {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-8) 0;
  color: var(--gray-500);
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-300);
}

/* Alternative Actions */
.alternative-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.alternative-actions .btn-secondary,
.alternative-actions .btn-outline {
  width: 100%;
  justify-content: center;
}

/* Login Info */
.login-info h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: var(--space-4);
  text-align: center;
}

.login-info ul {
  list-style: none;
}

.login-info li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  color: var(--gray-700);
  font-size: 0.9375rem;
}

/* Login Sidebar */
.login-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  width: 100%;
  max-width: 300px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-6);
}

.sidebar-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-4);
  text-align: center;
}

/* Status Indicators */
.status-indicators {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.status-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
}

.status-dot.online {
  background: var(--pharm-green);
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.3);
  animation: pulse 2s infinite;
}

/* Stats */
.stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--gray-200);
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pharm-blue);
}

/* Help Links */
.help-links {
  list-style: none;
}

.help-links li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  color: var(--gray-700);
  font-size: 0.9375rem;
}

.help-links a {
  color: var(--pharm-blue);
  text-decoration: none;
  font-weight: 600;
}

.help-links a:hover {
  text-decoration: underline;
}

/* Footer */
.pharm-footer {
  background: var(--gray-900);
  color: var(--white);
  padding: var(--space-8);
  text-align: center;
  margin-top: auto;
}

.pharm-footer p {
  margin-bottom: var(--space-2);
  font-size: 0.9375rem;
  color: var(--gray-300);
}

.pharm-footer a {
  color: var(--pharm-blue-light);
  text-decoration: none;
}

.pharm-footer a:hover {
  text-decoration: underline;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: var(--z-modal-backdrop);
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  backdrop-filter: blur(5px);
  animation: fadeIn var(--transition-base);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-2xl);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-2xl);
  animation: slideUp var(--transition-bounce);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
}

.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.modal-body {
  padding: var(--space-6);
}

.modal-body p {
  margin-bottom: var(--space-4);
  color: var(--gray-700);
  line-height: 1.6;
}

.modal-footer {
  padding: var(--space-6);
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

/* Button States */
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-outline:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Loading Spinner */
.spinner {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
  margin-left: var(--space-2);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .pharm-content {
    flex-direction: column;
    gap: var(--space-8);
  }
  
  .signup-card,
  .info-card {
    max-width: 600px;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .pharm-header {
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-4);
    text-align: center;
  }
  
  .pharm-content,
  .login-container {
    padding: var(--space-4);
  }
  
  .signup-card,
  .login-card {
    padding: var(--space-6);
  }
  
  .login-container {
    flex-direction: column;
    gap: var(--space-8);
  }
  
  .login-sidebar {
    max-width: 100%;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }
  
  .modal-content {
    margin: var(--space-4);
  }
}

@media (max-width: 480px) {
  .signup-card h2,
  .login-header h2 {
    font-size: 1.5rem;
  }
  
  .subtitle,
  .login-header p {
    font-size: 0.875rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: var(--space-3) var(--space-3) var(--space-3) var(--space-8);
    font-size: 0.9375rem;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: var(--space-3) var(--space-4);
    font-size: 0.875rem;
  }
}

/* Print Styles */
@media print {
  .pharm-header,
  .pharm-footer,
  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .toggle-password,
  .browse-btn {
    display: none !important;
  }
  
  .pharm-container {
    background: none;
  }
  
  .signup-card,
  .login-card,
  .info-card,
  .sidebar-card {
    box-shadow: none;
    border: 2px solid var(--gray-300);
  }
  
  .modal {
    position: static;
    display: block !important;
    background: none;
  }
  
  .modal-content {
    box-shadow: none;
    border: 2px solid var(--gray-300);
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --pharm-blue: #004080;
    --pharm-teal: #006652;
    --pharm-green: #006400;
    --pharm-red: #8b0000;
  }
  
  .signup-card,
  .login-card,
  .info-card,
  .sidebar-card {
    border: 3px solid var(--gray-900);
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    border: 2px solid var(--gray-900);
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    border: 2px solid currentColor;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .btn-primary::after,
  .status-dot.online,
  .spinner {
    animation: none !important;
  }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--gray-300);
  }
  
  .pharm-header {
    background: rgba(30, 30, 46, 0.95);
    color: var(--gray-300);
  }
  
  .signup-card,
  .login-card,
  .info-card,
  .sidebar-card,
  .modal-content {
    background: #1e1e2e;
    color: var(--gray-300);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: #2d2d44;
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--gray-300);
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--pharm-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.3);
  }
  
  .file-label {
    background: #2d2d44;
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .terms-group label,
  .login-link,
  .subtitle,
  .login-header p {
    color: var(--gray-400);
  }
  
  .pharm-footer {
    background: #1a1a2e;
    color: var(--gray-400);
  }
  
  .modal {
    background: rgba(0, 0, 0, 0.7);
  }
}