﻿html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI Black', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f3f4f6;
  color: #333;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  overflow-y: auto;
}
.onboard-navbar {
  font-family: 'Segoe UI Black', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  width: 100%;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,159,220,0.1);
}

/* Enhanced Top Bar with Slide Animation */
.onboard-topbar {
  background: linear-gradient(135deg, #009fdc 0%, #00b6ed 100%);
  font-size: 0.9rem;
  min-height: 32px;
  padding: 0.25rem 0;
  position: relative;
  overflow: hidden;
  animation: slideDownFade 0.6s ease-out;
}

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

.onboard-topbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmerTopbar 3s ease-in-out infinite;
}

@keyframes shimmerTopbar {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.onboard-topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.2rem 0.5rem;
  border-radius: 0.3rem;
}

.onboard-topbar a:hover {
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.onboard-topbar .onboard-topbar-center a {
  margin-right: 1.5rem;
}

.onboard-topbar .onboard-topbar-center a:nth-child(1) { animation-delay: 0.1s; }
.onboard-topbar .onboard-topbar-center a:nth-child(2) { animation-delay: 0.2s; }
.onboard-topbar .onboard-topbar-center a:nth-child(3) { animation-delay: 0.3s; }
.onboard-topbar .onboard-topbar-center a:nth-child(4) { animation-delay: 0.4s; }
.onboard-topbar .onboard-topbar-center a:nth-child(5) { animation-delay: 0.5s; }
.onboard-topbar .onboard-topbar-center a:nth-child(6) { animation-delay: 0.6s; }

.onboard-topbar .onboard-topbar-center a:last-child {
  margin-right: 0;
}

.onboard-topbar .onboard-topbar-right a {
  font-weight: bold;
  animation: fadeInRight 0.6s ease-out 0.3s both;
}

/* Enhanced Main Bar with Floating Animation */
.onboard-mainbar {
  background: #fff;
  border-bottom: none;
  min-height: 68px;
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,159,220,0.08);
  position: relative;
  animation: fadeInScale 0.8s ease-out 0.2s both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.onboard-logo {
  height: 38px;
  transition: transform 0.3s ease;
  animation: bounceIn 0.8s ease-out 0.4s both;
}

/* Header Logo Full Size Styling */
.navbar-brand .brand-logo .logo-img {
  width: auto;
  height: 48px;
  max-width: 200px;
  max-height: 48px;
  object-fit: contain;
}

.onboard-logo:hover {
  transform: scale(1.05) rotate(2deg);
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-10deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.05) rotate(2deg);
  }
  70% {
    transform: scale(0.95) rotate(-1deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.onboard-logo-text {
  font-size: 1.05rem;
  color: #444;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
  transition: color 0.3s ease;
}

.onboard-logo-wrap:hover .onboard-logo-text {
  color: #009fdc;
}

/* Enhanced Search with Floating Effect */
.onboard-search {
  flex: 1 1 0%;
  max-width: 500px;
  margin: 0 2rem;
  display: flex;
  align-items: center;
  position: relative;
}

.onboard-search-input {
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0,159,220,0.1);
  border: 2px solid #e5e7eb;
  padding: 0.6rem 1.25rem;
  font-size: 1.05rem;
  color: #444;
  flex: 1;
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
}

.onboard-search-input::placeholder {
  color: #aaa;
  transition: color 0.3s ease;
}

.onboard-search-input:focus {
  outline: none;
  border-color: #009fdc;
  box-shadow: 0 8px 25px rgba(0,159,220,0.2), 0 0 0 4px rgba(0,159,220,0.1);
  transform: translateY(-2px);
  background: #fff;
}

.onboard-search-input:focus::placeholder {
  color: #009fdc;
}

.onboard-search-btn {
  background: linear-gradient(135deg, #111 0%, #333 100%);
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 0 0.5rem 0.5rem 0;
  border: 2px solid #111;
  border-left: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.onboard-search-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.onboard-search-btn:hover::before {
  left: 100%;
}

.onboard-search-btn:hover {
  background: linear-gradient(135deg, #009fdc 0%, #00b6ed 100%);
  border-color: #009fdc;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,159,220,0.3);
}

.onboard-search:focus-within .onboard-search-btn {
  border-color: #009fdc;
  transform: translateY(-2px);
}

/* Enhanced Icons with Pulse Animation */
.onboard-mainbar-icons {
  gap: 1.2rem;
}

.onboard-icon-link {
  color: #444 !important;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 10%;
  position: relative;
}

.onboard-icon-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(0,159,220,0.1);
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
}

.onboard-icon-link:hover::before {
  width: 100%;
  height: 100%;
}

.onboard-icon-link:hover {
  color: #009fdc !important;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0,159,220,0.2);
}

/* Enhanced Menu Bar with Mega Menu */
.onboard-menubar {
  background: linear-gradient(135deg, #00b6ed 0%, #1bb6f7 100%);
  gap: 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.7rem 0;
  border: none;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,182,237,0.15);
}

.onboard-menubar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: shimmerMenu 4s ease-in-out infinite;
}

@keyframes shimmerMenu {
  0%, 100% { transform: translateX(-100%); opacity: 0; }
  50% { transform: translateX(100%); opacity: 1; }
}

.onboard-menu-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}

.onboard-menu-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.onboard-menu-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s;
}

.onboard-menu-link:hover::after {
  left: 100%;
}

.onboard-menu-link i {
  font-size: 0.8em;
  margin-left: 0.3em;
  transition: transform 0.3s ease;
}

.onboard-menu-link:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.onboard-menu-link:hover::before {
  width: 80%;
}

.onboard-menu-link:hover i {
  transform: rotate(180deg);
}

/* Mega Menu Styles */
.onboard-mega-menu {
  position: fixed;
  top: 0%;
  left: 50%;
  width: 90vw;
  max-width: 1200px;
  transform: translateX(-50%) translateY(-20px);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,159,220,0.1);
  box-shadow: 0 15px 50px rgba(0,159,220,0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 999;
  border-radius: 0 0 1rem 1rem;
  overflow: hidden;
}

.onboard-menu-link:hover + .onboard-mega-menu,
.onboard-mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  max-height: 500px;
}

.onboard-mega-content {
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.onboard-mega-column {
  position: relative;
}

.onboard-mega-column:nth-child(1) { animation-delay: 0.1s; }
.onboard-mega-column:nth-child(2) { animation-delay: 0.2s; }
.onboard-mega-column:nth-child(3) { animation-delay: 0.3s; }
.onboard-mega-column:nth-child(4) { animation-delay: 0.4s; }

.onboard-mega-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #009fdc, #00b6ed, #1bb6f7);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.onboard-mega-column:hover::before {
  opacity: 1;
}

.onboard-mega-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #009fdc;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.7rem;
  transition: color 0.3s ease;
}

.onboard-mega-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #009fdc, #00b6ed);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.onboard-mega-column:hover .onboard-mega-title {
  color: #00b6ed;
}

.onboard-mega-column:hover .onboard-mega-title::after {
  width: 60px;
}

.onboard-mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.onboard-mega-item {
  margin-bottom: 0.8rem;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.onboard-mega-item:last-child {
  margin-bottom: 0;
}

.onboard-mega-link {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  padding: 0.6rem 0.8rem;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}

.onboard-mega-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(135deg, rgba(0,159,220,0.1), rgba(0,182,237,0.05));
  transition: width 0.3s ease;
  border-radius: 0.5rem;
}

.onboard-mega-link::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  width: 0;
  height: 2px;
  background: #009fdc;
  transition: width 0.3s ease;
  transform: translateY(-50%);
  border-radius: 1px;
}

.onboard-mega-link:hover {
  color: #009fdc;
  text-decoration: none;
  background: rgba(0,159,220,0.05);
  transform: translateX(10px);
  box-shadow: 0 2px 10px rgba(0,159,220,0.1);
}

.onboard-mega-link:hover::before {
  width: 100%;
}

.onboard-mega-link:hover::after {
  width: 20px;
}

.onboard-mega-item:hover {
  transform: translateX(5px);
}

/* Featured Item Styling */
.onboard-mega-featured {
  background: linear-gradient(135deg, rgba(0,159,220,0.05), rgba(0,182,237,0.02));
  border: 1px solid rgba(0,159,220,0.1);
  border-radius: 0.8rem;
  padding: 1rem;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.onboard-mega-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #009fdc, #00b6ed, #1bb6f7);
  border-radius: 0.8rem 0.8rem 0 0;
}

.onboard-mega-featured-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #009fdc;
  margin-bottom: 0.5rem;
}

.onboard-mega-featured-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.onboard-mega-featured-btn {
  background: linear-gradient(135deg, #009fdc, #00b6ed);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.onboard-mega-featured-btn:hover {
  background: linear-gradient(135deg, #00b6ed, #1bb6f7);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,159,220,0.3);
  color: #fff;
  text-decoration: none;
}

/* Enhanced Submenu Bar */
.onboard-submenubar {
  background: linear-gradient(135deg, #1bb6f7 0%, #009fdc 100%);
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.4rem 0;
  text-align: center;
  position: relative;
}

.onboard-submenubar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.onboard-submenu-link {
  color: #fff;
  text-decoration: none;
  margin: 0 0.8rem;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 0.3rem 0.8rem;
  border-radius: 1rem;
  position: relative;
  display: inline-block;
}

.onboard-submenu-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 1rem;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.onboard-submenu-link:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.onboard-submenu-link:hover::before {
  transform: scale(1);
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Removed slideInLeft - replaced by random animation system */

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .onboard-search {
    max-width: 400px;
    margin: 0 1.5rem;
  }
  .onboard-menubar {
    gap: 2rem;
  }
  .onboard-mega-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
  }
}

@media (max-width: 900px) {
  .onboard-menubar {
    gap: 1.5rem;
    font-size: 1rem;
  }
  .onboard-menu-link {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }
  .onboard-search {
    max-width: 300px;
    margin: 0 1rem;
  }
  .onboard-mega-menu {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    transform: translateY(-20px);
    bottom: 0;
    border-radius: 1rem 1rem 0 0;
  }
  .onboard-menu-link:hover + .onboard-mega-menu,
  .onboard-mega-menu:hover {
    transform: translateY(0);
  }
  .onboard-mega-content {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .onboard-topbar-center {
    display: none !important;
  }
  .onboard-mainbar {
    flex-direction: column;
    align-items: stretch !important;
    padding: 1rem 0;
  }
  .onboard-search {
    margin: 1rem 0 !important;
    max-width: 100%;
  }
  .onboard-mainbar-icons {
    justify-content: flex-end;
    margin-top: 0.5rem;
  }
  .onboard-menubar {
    gap: 0.8rem;
    font-size: 0.95rem;
    flex-wrap: wrap;
    padding: 0.5rem;
  }
  .onboard-logo {
    height: 32px;
  }
  .onboard-logo-text {
    font-size: 0.9rem;
  }
  .onboard-submenubar {
    font-size: 0.85rem;
  }
  .onboard-submenu-link {
    margin: 0 0.5rem;
  }
  .onboard-mega-menu {
    display: none; /* Hide mega menu on mobile */
  }
}

@media (max-width: 576px) {
  .onboard-topbar {
    font-size: 0.8rem;
  }
  .onboard-topbar-right {
    text-align: center;
  }
  .onboard-search-input {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
  .onboard-search-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .onboard-menubar {
    gap: 0.5rem;
    font-size: 0.9rem;
  }
  .onboard-menu-link {
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem;
  }
}

/* Onboarding Footer Styles */
.onboard-footer-main {
  background: #232323;
  color: #fff;
  margin-top: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  border-top: 1px solid #222;
}
.onboard-footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.onboard-footer-brand {
  min-width: 180px;
  max-width: 220px;
  flex: 0 0 220px;
}
.onboard-footer-cat {
  width: 108px;
  height: auto;
  margin-bottom: 0.5rem;
}
.onboard-footer-slogan {
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.onboard-footer-slogan .text-primary { color: #00b6ed !important; }

.onboard-footer-links {
  flex: 1 1 0%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}
.onboard-footer-heading {
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
  color: #fff;
}
.onboard-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.onboard-footer-list li { margin-bottom: 0.5rem; }
.onboard-footer-list li:last-child { margin-bottom: 0; }
.onboard-footer-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.15s;
}
.onboard-footer-list a:hover, .onboard-footer-link:hover {
  color: #00b6ed;
  text-decoration: none;
}

.onboard-footer-bottom {
  background: #232323;
  border-top: 1px solid #222;
  padding-top: 1.2rem;
  padding-bottom: 0.7rem;
  position: relative;
}
.onboard-footer-payments {
  margin-bottom: 0.7rem;
}
.onboard-footer-pay {
  height: 26px;
  width: auto;
  margin: 0 0.18rem;
  vertical-align: middle;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  padding: 2px 6px;
}
.onboard-footer-sustain {
  color: #bbb;
  font-size: 0.97rem;
  margin-bottom: 0.2rem;
}
.onboard-footer-link {
  color: #fff;
  text-decoration: none;
  margin: 0 0.2rem;
  transition: color 0.15s;
}
.onboard-footer-link:hover { color: #00b6ed; text-decoration: none; }
.onboard-footer-copyright {
  color: #eee;
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}
.onboard-footer-topbtn {
  position: absolute;
  right: 1.5rem;
  bottom: 1.1rem;
  background: #181818;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  font-size: 1.3rem;
  transition: background 0.15s, color 0.15s;
  z-index: 10;
}
.onboard-footer-topbtn:hover { background: #00b6ed; color: #fff; }

@media (max-width: 900px) {
  .onboard-footer-links { gap: 1.2rem; }
}
@media (max-width: 768px) {
  .onboard-footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .onboard-footer-brand { margin-bottom: 1.5rem; }
  .onboard-footer-links { flex-direction: column; gap: 1.5rem; }
  .onboard-footer-heading { margin-bottom: 0.5rem; }
  .onboard-footer-topbtn { right: 1rem; bottom: 1rem; }
}
/* ...existing code... */

/* Onboarding Auth/Login/Register Enhanced UI - Blue Theme */
.onboard-auth-bg {
  min-height: 100vh;
  background: linear-gradient(135deg, #009fdc 0%, #00b6ed 25%, #1bb6f7 75%, #0891b3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 0 2.5rem 0;
  position: relative;
  overflow: hidden;
}

/* Animated background elements */
.onboard-auth-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(255,255,255,0.06) 0%, transparent 50%);
  animation: gentleFloat 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

.onboard-auth-wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.onboard-auth-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2rem;
  box-shadow: 0 25px 50px rgba(0, 159, 220, 0.15),
              0 15px 35px rgba(0, 182, 237, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  padding: 3rem 2.5rem;
  min-width: 400px;
  max-width: 500px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(80px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.onboard-auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #009fdc, #00b6ed, #1bb6f7, #009fdc);
  border-radius: 2rem 2rem 0 0;
  animation: shimmerBlue 3s ease-in-out infinite;
}

@keyframes shimmerBlue {
  0%, 100% {
    background: linear-gradient(90deg, #009fdc, #00b6ed, #1bb6f7, #009fdc);
    opacity: 0.8;
  }
  50% {
    background: linear-gradient(90deg, #1bb6f7, #009fdc, #00b6ed, #1bb6f7);
    opacity: 1;
  }
}

.onboard-auth-card-animate:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 70px rgba(0, 159, 220, 0.25),
              0 20px 50px rgba(0, 182, 237, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.onboard-auth-card h2 {
  font-weight: 700;
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #009fdc, #00b6ed, #1bb6f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  position: relative;
  animation: titleGlowBlue 3s ease-in-out infinite alternate;
}

@keyframes titleGlowBlue {
  from {
    filter: drop-shadow(0 0 10px rgba(0, 159, 220, 0.3));
  }
  to {
    filter: drop-shadow(0 0 20px rgba(27, 182, 247, 0.5));
  }
}

.onboard-auth-card hr {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, transparent, #009fdc, #00b6ed, #1bb6f7, transparent);
  margin: 1rem 0 2.5rem 0;
  border-radius: 10px;
  animation: lineExpand 1.2s ease-out 0.5s both;
}

@keyframes lineExpand {
  from {
    width: 0;
    margin-left: 50%;
    opacity: 0;
  }
  to {
    width: 100%;
    margin-left: 0;
    opacity: 1;
  }
}

/* Enhanced Input Styles with Blue Theme */
.onboard-auth-input {
  border: 2px solid #e8f4f8;
  border-radius: 1.2rem;
  padding: 1.1rem 1.5rem;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  font-weight: 500;
}

.onboard-auth-input:focus {
  border-color: #009fdc;
  box-shadow: 0 0 0 4px rgba(0, 159, 220, 0.15),
              0 10px 30px rgba(0, 182, 237, 0.1);
  transform: translateY(-3px);
  background: #fff;
  outline: none;
}

.onboard-auth-input:hover:not(:focus) {
  border-color: #00b6ed;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 182, 237, 0.1);
}

.onboard-auth-input::placeholder {
  color: #a0b4b8;
  transition: color 0.3s ease;
}

.onboard-auth-input:focus::placeholder {
  color: #009fdc;
}

/* Enhanced Label Animation with Blue Theme */
.form-label {
  font-weight: 600;
  font-size: 1.08rem;
  color: #2c5aa0;
  margin-bottom: 0.8rem;
  display: block;
  transition: all 0.3s ease;
  position: relative;
}

.form-label::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #009fdc, #00b6ed);
  border-radius: 5px;
  transition: width 0.4s ease;
}

.form-group:focus-within .form-label {
  color: #009fdc;
}

.form-group:focus-within .form-label::after {
  width: 100%;
}

/* Enhanced Button Styles with Blue Theme */
.onboard-auth-btn {
  background: linear-gradient(135deg, #009fdc 0%, #00b6ed 50%, #1bb6f7 100%);
  border: none;
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 1.2rem;
  font-weight: 700;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 159, 220, 0.3);
}

.onboard-auth-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.onboard-auth-btn:hover::before {
  left: 100%;
}

.onboard-auth-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 159, 220, 0.4);
  background: linear-gradient(135deg, #1bb6f7 0%, #009fdc 50%, #00b6ed 100%);
}

.onboard-auth-btn:active {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 159, 220, 0.3);
}

/* Google Button with Blue Theme Integration */
.onboard-auth-google {
  background: linear-gradient(135deg, #fff 0%, #f8fbfc 100%);
  border: 2px solid #e8f4f8;
  color: #2c5aa0;
  font-weight: 600;
  border-radius: 1.2rem;
  padding: 1.1rem 0;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 159, 220, 0.1);
}

.onboard-auth-google::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 159, 220, 0.05), transparent);
  transition: left 0.6s;
}

.onboard-auth-google:hover::before {
  left: 100%;
}

.onboard-auth-google i {
  color: #ea4335;
  font-size: 1.5em;
  margin-right: 1rem;
  transition: transform 0.3s ease;
}

.onboard-auth-google:hover {
  background: linear-gradient(135deg, #f8fbfc 0%, #fff 100%);
  border-color: #009fdc;
  color: #009fdc;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 159, 220, 0.2);
}

.onboard-auth-google:hover i {
  transform: scale(1.15) rotate(8deg);
}

/* Divider with Blue Theme */
.onboard-auth-divider, .onboard-auth-or-divider {
  width: 100%;
  text-align: center;
  border: none;
  position: relative;
  margin: 2rem 0;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.onboard-auth-divider span, .onboard-auth-or-divider span {
  background: rgba(255, 255, 255, 0.98);
  color: #009fdc;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  border: 2px solid #e8f4f8;
  z-index: 2;
  backdrop-filter: blur(10px);
  animation: fadeInScale 0.8s ease-out 1s both;
  box-shadow: 0 4px 15px rgba(0, 159, 220, 0.1);
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.onboard-auth-divider:before, .onboard-auth-divider:after,
.onboard-auth-or-divider:before, .onboard-auth-or-divider:after {
  content: '';
  flex: 1 1 0%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #009fdc, #00b6ed, transparent);
  margin: 0 1rem;
  z-index: 1;
  border-radius: 5px;
  animation: lineGrow 1s ease-out 1.2s both;
}

@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.onboard-auth-or-divider { display: none; }

/* Password Eye Button with Blue Theme */
.onboard-auth-eye {
  background: linear-gradient(135deg, #f8fbfc, #e8f4f8);
  border: 2px solid #e8f4f8;
  color: #009fdc;
  font-size: 1.4rem;
  padding: 0 1.2rem;
  border-radius: 0 1.2rem 1.2rem 0;
  border-left: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.onboard-auth-eye::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(0, 159, 220, 0.15);
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
}

.onboard-auth-eye:hover::before {
  width: 120%;
  height: 120%;
}

.onboard-auth-eye:hover {
  color: #00b6ed;
  border-color: #009fdc;
  transform: scale(1.1);
  background: linear-gradient(135deg, #e8f4f8, #f8fbfc);
}

/* Enhanced Link Styles with Blue Theme */
.onboard-auth-link {
  color: #009fdc;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.onboard-auth-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #009fdc, #00b6ed);
  border-radius: 5px;
  transition: width 0.4s ease;
}

.onboard-auth-link:hover {
  color: #00b6ed;
  text-decoration: none;
  transform: translateY(-1px);
}

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

/* Form Check Enhanced with Blue Theme */
.form-check-input {
  border-radius: 0.5rem;
  border: 2px solid #e8f4f8;
  transition: all 0.3s ease;
}

.form-check-input:checked {
  background: linear-gradient(135deg, #009fdc, #00b6ed);
  border-color: #009fdc;
  box-shadow: 0 4px 10px rgba(0, 159, 220, 0.3);
}

.form-check-input:focus {
  box-shadow: 0 0 0 4px rgba(0, 159, 220, 0.15);
  border-color: #009fdc;
}

.form-check-label {
  color: #2c5aa0;
  font-weight: 500;
  transition: color 0.3s ease;
}

.form-check:hover .form-check-label {
  color: #009fdc;
}

/* Loading Animation with Blue Theme */
.onboard-auth-loading {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255,255,255,.4);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spinBlue 1s ease-in-out infinite;
  margin-right: 0.7rem;
}

@keyframes spinBlue {
  to { transform: rotate(360deg); }
}

/* Password Strength Indicator with Blue Theme */
.password-strength {
  margin-top: 0.8rem;
}

.strength-bar {
  height: 5px;
  background-color: #e8f4f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 159, 220, 0.1);
}

.strength-fill {
  height: 100%;
  width: 0%;
  transition: width 0.4s ease, background-color 0.4s ease;
  border-radius: 10px;
  background: linear-gradient(90deg, #009fdc, #00b6ed);
}

.strength-text {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.4s ease;
  color: #2c5aa0;
}

/* Enhanced Responsive Design */
@media (max-width: 900px) {
  .onboard-auth-wrap { gap: 2.5rem; }
  .onboard-auth-card {
    padding: 2.5rem 2rem;
    min-width: 350px;
  }
  .onboard-auth-card h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .onboard-auth-bg {
    padding: 2rem 1rem;
  }
  .onboard-auth-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 3rem;
    width: 100%;
    max-width: 480px;
  }
  .onboard-auth-card {
    min-width: 100%;
    max-width: 100%;
    padding: 2.5rem 2rem;
    margin: 0;
  }
  .onboard-auth-card h2 {
    font-size: 2.1rem;
  }
  .onboard-auth-divider { display: none; }
  .onboard-auth-or-divider {
    display: flex;
    margin: 2.5rem 0;
  }
}

@media (max-width: 480px) {
  .onboard-auth-bg {
    padding: 1.5rem 0.75rem;
  }
  .onboard-auth-card {
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
  }
  .onboard-auth-card h2 {
    font-size: 1.9rem;
  }
  .onboard-auth-input {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
  .onboard-auth-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }
  .onboard-auth-google {
    padding: 1rem 0;
    font-size: 1.05rem;
  }
}

/* Animation delays for staggered entrance */
.onboard-auth-card:nth-child(1) {
  animation-delay: 0s;
}

.onboard-auth-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Focus states for accessibility */
.onboard-auth-btn:focus,
.onboard-auth-google:focus,
.onboard-auth-input:focus {
  outline: 3px solid rgba(0, 159, 220, 0.5);
  outline-offset: 3px;
}

/* Error states with Blue Theme */
.onboard-auth-input.is-invalid {
  border-color: #dc3545;
  animation: shakeBlue 0.6s ease-in-out;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15);
}

@keyframes shakeBlue {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

.invalid-feedback {
  color: #dc3545;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.7rem;
}

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

/* Success states */
.onboard-auth-input.is-valid {
  border-color: #28a745;
  box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.15);
}

.valid-feedback {
  color: #28a745;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.7rem;
}
