* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0d1117;
  --bg-secondary: #1b2636;
  --bg-tertiary: #1c2333;
  --border-color: #2d3748;
  --accent-primary: #ff9800;
  --accent-secondary: #6366f1;
  --text-primary: #e0e0e0;
  --text-secondary: #8b949e;
  --text-muted: #5a6270;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hidden scrollbar - still scrollable */
::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

* {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(28, 35, 51, 0.9);
  border-bottom: 1px solid rgba(45, 55, 72, 0.3);
  backdrop-filter: blur(10px);
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff9800;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.logo:hover {
  color: #ffb84d;
}

.logo-icon {
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff9800;
  transition: var(--transition);
}

.nav-link:hover {
  color: #ff9800;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-admin {
  background: rgba(99, 102, 241, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: #6366f1;
}

.nav-admin:hover {
  color: #7679f5;
}

.nav-register {
  background: linear-gradient(135deg, #ff9800, #f57c00) !important;
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}

.nav-register:hover {
  box-shadow: 0 3px 12px rgba(255, 152, 0, 0.3);
  color: #fff !important;
}

.nav-user-logout {
  color: #8b949e !important;
  font-size: 0.9rem;
}

.nav-logout {
  background: rgba(244, 67, 54, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: #f44336;
}

.nav-logout:hover {
  color: #f66a5a;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ff9800;
  border-radius: 2px;
  transition: var(--transition);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: #ff9800;
  background-clip: text;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 152, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: white;
  box-shadow: 0 0 20px rgba(255, 152, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #6366f1;
  border: 2px solid #6366f1;
}

.btn-secondary:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: #7679f5;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-disabled {
  background: rgba(45, 55, 72, 0.5);
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.6;
}

/* Stats Section */
.stats-section {
  padding: 3rem 2rem;
  background: rgba(28, 35, 51, 0.3);
  margin: 2rem 0;
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 152, 0, 0.3);
  box-shadow: 0 20px 40px rgba(255, 152, 0, 0.1);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff9800;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Features Section */
.features-section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #ff9800;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff9800, #f57c00);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background: rgba(28, 35, 51, 0.6);
  border: 1px solid rgba(45, 55, 72, 0.4);
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(28, 35, 51, 0.9);
  border-color: rgba(255, 152, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 152, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.feature-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  max-width: 42px;
  max-height: 42px;
}

.inline-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 6px;
}

.feature-card h3 {
  color: #ff9800;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* How It Works */
.how-it-works {
  padding: 4rem 2rem;
  background: rgba(28, 35, 51, 0.3);
  max-width: 1400px;
  margin: 0 auto;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(255, 152, 0, 0.05) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.step:hover {
  border-color: rgba(255, 152, 0, 0.3);
  box-shadow: 0 10px 30px rgba(255, 152, 0, 0.1);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step h3 {
  color: #ff9800;
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--text-secondary);
}

/* Security Section */
.security-section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.security-item {
  padding: 2rem;
  background: rgba(76, 175, 80, 0.05);
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 12px;
}

.security-item h3 {
  color: #4caf50;
  margin-bottom: 0.75rem;
}

.security-item p {
  color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
  border-top: 1px solid rgba(45, 55, 72, 0.4);
  border-bottom: 1px solid rgba(45, 55, 72, 0.4);
  text-align: center;
  max-width: 1400px;
  margin: 3rem auto;
}

.cta-section h2 {
  font-size: 2.2rem;
  color: #ff9800;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: rgba(28, 35, 51, 0.8);
  border-top: 1px solid rgba(45, 55, 72, 0.3);
  padding: 3rem 2rem 1rem;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h3,
.footer-column h4 {
  color: #ff9800;
  margin-bottom: 1rem;
}

.footer-column p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: #ff9800;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(45, 55, 72, 0.3);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Page Title */
.page-title {
  font-size: 2.5rem;
  color: #ff9800;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Alerts */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-success {
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4caf50;
}

.alert-error {
  background: rgba(244, 67, 54, 0.15);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #f44336;
}

/* Admin Layout */
.admin-body {
  background: linear-gradient(135deg, #0d1117 0%, #1b2636 100%);
}

.admin-wrapper {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 0;
  min-height: 100vh;
}

.admin-sidebar {
  background: rgba(28, 35, 51, 0.9);
  border-right: 1px solid rgba(45, 55, 72, 0.3);
  padding: 2rem 1.5rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.admin-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ff9800;
  margin-bottom: 2rem;
}


.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 6px;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.admin-nav-link:hover {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.admin-nav-link.active {
  background: rgba(99, 102, 241, 0.15);
  color: #6366f1;
  border-left-color: #6366f1;
  font-weight: 600;
}

.logout-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(244, 67, 54, 0.1);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.2);
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.logout-btn:hover {
  background: rgba(244, 67, 54, 0.2);
  border-color: rgba(244, 67, 54, 0.4);
}

.admin-main {
  display: flex;
  flex-direction: column;
}

.admin-header {
  padding: 2rem;
  background: rgba(28, 35, 51, 0.5);
  border-bottom: 1px solid rgba(45, 55, 72, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-header h1 {
  color: #ff9800;
  margin: 0;
  font-size: 1.8rem;
}

.admin-user {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.admin-content {
  padding: 2rem;
  flex: 1;
  overflow-y: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-container {
    padding: 1rem;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.3rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .admin-wrapper {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .admin-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }
}

/* Download Section */
.download-section {
  padding: 3rem 2rem;
  min-height: calc(100vh - 200px);
}

.download-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.download-card {
  background: rgba(28, 35, 51, 0.6);
  border: 1px solid rgba(45, 55, 72, 0.4);
  border-radius: 12px;
  padding: 1.5rem;
  transition: var(--transition);
}

.download-card:first-child {
  border-color: rgba(255, 152, 0, 0.3);
  box-shadow: 0 0 20px rgba(255, 152, 0, 0.05);
}

.download-card:hover {
  border-color: rgba(255, 152, 0, 0.4);
  box-shadow: 0 10px 30px rgba(255, 152, 0, 0.1);
}

.download-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.version-info h3 {
  color: #ff9800;
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.version-title {
  color: var(--text-primary);
  font-weight: 500;
}

.download-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.badge {
  background: rgba(99, 102, 241, 0.2);
  color: #6366f1;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

.downloads-count {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.download-description {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.download-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.file-size {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Contact Form */
.contact-section {
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-control {
  padding: 0.75rem 1rem;
  background: rgba(28, 35, 51, 0.8);
  border: 1px solid rgba(45, 55, 72, 0.6);
  border-radius: 6px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: #ff9800;
  box-shadow: 0 0 10px rgba(255, 152, 0, 0.15);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Updates/Changelog Page */
.updates-section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding-left: 2rem;
  margin-top: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #ff9800, #6366f1);
}

.timeline-item {
  position: relative;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: rgba(28, 35, 51, 0.6);
  border: 1px solid rgba(45, 55, 72, 0.4);
  border-radius: 8px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 1.75rem;
  width: 12px;
  height: 12px;
  background: #ff9800;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
}

.timeline-version {
  color: #ff9800;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.timeline-title {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-date {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.timeline-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Admin Forms */
.admin-form {
  max-width: 600px;
}

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

.admin-card {
  background: rgba(28, 35, 51, 0.5);
  border: 1px solid rgba(45, 55, 72, 0.4);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.admin-card h3 {
  color: #ff9800;
  margin-bottom: 1rem;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.admin-stat-card {
  background: rgba(28, 35, 51, 0.6);
  border: 1px solid rgba(45, 55, 72, 0.4);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.admin-stat-card .stat-value {
  font-size: 2rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.admin-table th,
.admin-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(45, 55, 72, 0.3);
}

.admin-table th {
  color: #ff9800;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-table td {
  color: var(--text-secondary);
}

.admin-table tr:hover {
  background: rgba(255, 152, 0, 0.05);
}

.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  border-radius: 4px;
}

.btn-danger {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

.btn-danger:hover {
  background: rgba(244, 67, 54, 0.3);
}

.btn-success {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.btn-success:hover {
  background: rgba(76, 175, 80, 0.3);
}

.btn-info {
  background: rgba(99, 102, 241, 0.2);
  color: #6366f1;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.btn-info:hover {
  background: rgba(99, 102, 241, 0.3);
}

.message-unread {
  border-left: 3px solid #ff9800;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--bg-secondary);
  border: 1px solid rgba(45, 55, 72, 0.5);
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.modal h3 {
  color: #ff9800;
  margin-bottom: 1.5rem;
}

.actions-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Login Page */
.login-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 2rem;
}

.login-card {
  background: rgba(28, 35, 51, 0.8);
  border: 1px solid rgba(45, 55, 72, 0.5);
  border-radius: 12px;
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
}

.login-card h2 {
  color: #ff9800;
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.login-subtitle {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 2rem;
}

.login-form .form-group {
  margin-bottom: 1.25rem;
}

.login-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}
