.parent-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background: linear-gradient(135deg, #fff4f0 0%, #ffdbcc 50%, #ffa366 100%);
  min-height: 100vh;
}

.nav-btn {
  position: relative;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.5rem;
  gap: 0.5rem;
  border-radius: 2rem;
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  transition: all 0.3s ease;
  font-weight: 600;
}

.nav-btn:hover {
  background-color: var(--primary);
  border: 2px solid transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.nav-btn span {
  font-weight: bold;
}

.abs-topleft {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 10;
}

.parent-wrapper .hero-wrapper {
  display: none;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 100vh;
  background: linear-gradient(45deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 2rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
}

.hero-illustration {
  position: relative;
  margin-bottom: 2rem;
}

.hero-icon {
  font-size: 8rem !important;
  color: white;
  opacity: 0.9;
  animation: float 3s ease-in-out infinite;
}

.delivery-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: slide 4s ease-in-out infinite;
}

.box-icon,
.location-icon {
  font-size: 2rem !important;
  color: #FFE0B2;
}

.delivery-path {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #FFE0B2, transparent);
  animation: pathGlow 2s ease-in-out infinite alternate;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0.5rem 0 1rem 0;
  opacity: 0.9;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #FFE0B2;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes slide {

  0%,
  100% {
    transform: translate(-50%, -50%) translateX(0);
  }

  50% {
    transform: translate(-50%, -50%) translateX(10px);
  }
}

@keyframes pathGlow {
  from {
    opacity: 0.5;
  }

  to {
    opacity: 1;
  }
}

.parent-wrapper .content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  height: 100vh;
  width: 100%;
  max-width: 40rem;
  padding: 2rem 1rem;
}

.parent-wrapper .content-wrapper .auth-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 450px;
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-container {
  margin-bottom: 1rem;
}

.jastip-icon {
  font-size: 4rem !important;
  color: var(--primary);
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.auth-header .title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0.5rem 0;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.subtitle {
  color: #666;
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
}

.welcome-text {
  text-align: center;
  margin-bottom: 2rem;
}

.welcome-text h2 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.welcome-text p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}


.parent-wrapper .content-wrapper .auth-card .card-body {
  flex: 1;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.input-field .prefix {
  color: var(--primary) !important;
  font-size: 1.2rem;
}

.input-field input[type=email]:focus,
.input-field input[type=password]:focus {
  border-bottom: 1px solid var(--primary) !important;
  box-shadow: 0 1px 0 0 var(--primary) !important;
}

.input-field input[type=email]:focus+label,
.input-field input[type=password]:focus+label {
  color: var(--primary) !important;
}

.input-field label {
  color: #999 !important;
}

.auth-card .btn-auth {
  margin: 1.5rem 0;
  width: 100%;
  border-radius: 2rem;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: none;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.auth-card .btn-auth:hover {
  background: linear-gradient(45deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.auth-card .btn-auth.disabled {
  background: #ccc;
  box-shadow: none;
}

.auth-links {
  margin-top: 1rem;
}

.auth-links p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.auth-links a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.auth-links a:hover {
  text-decoration: underline;
}

.features-preview {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 0.5rem;
}

.feature-item i {
  font-size: 1.8rem !important;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.feature-item span {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
}

[type="checkbox"]:checked+span:not(.lever) {
  color: var(--primary) !important;
}

[type="checkbox"]:checked+span:not(.lever):before {
  border-right: 2px solid var(--primary) !important;
  border-bottom: 2px solid var(--primary) !important;
}

.jastip-icon {
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-header .title {
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* media query for tab only */
@media only screen and (min-width: 768px) {
  .parent-wrapper .hero-wrapper {
    display: flex;
  }

  .hero-stats {
    gap: 3rem;
  }

  .features-preview {
    gap: 1rem;
  }

  .feature-item {
    padding: 0 1rem;
  }
}

@media only screen and (max-width: 767px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .features-preview {
    flex-direction: column;
    gap: 1rem;
  }

  .feature-item {
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
  }

  .feature-item i {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 992px) {
  .parent-wrapper .content-wrapper .auth-card {
    padding: 3rem 2.5rem;
  }
}