/* Auth Pages Specific Styles */
.auth-section {
  min-height: calc(100vh - 66px - 300px);
  /* Adjust based on header and footer height */
  background-color: var(--light-cyan);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.auth-decoration-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
  radial-gradient(var(--pink) 1px, transparent 1px),
  radial-gradient(var(--yellow) 1px, transparent 1px);
  background-size: 30px 30px, 40px 40px;
  background-position: 0 0, 15px 15px;
  opacity: 0.1;
  z-index: 0;
}

.auth-decoration-circle1 {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--yellow);
  opacity: 0.5;
  z-index: 0;
  animation: floating-y 10s ease-in-out infinite alternate-reverse;
}

.auth-decoration-circle2 {
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--pink);
  opacity: 0.5;
  z-index: 0;
  animation: floating-y 10s ease-in-out infinite alternate-reverse;
}

.auth-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 40px;
  position: relative;
  z-index: 1;
}

@keyframes floating-y {
  0% {
  transform: translateY(-10%);
  scale: 100%;
  }

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

  100% {
  transform: translateY(10%);
  scale: 100%;
  }
}

.auth-card-header {
  position: relative;
}

.auth-card-header h1 {
  font-weight: 700;
  color: #333;
  position: relative;
  display: inline-block;
}

.auth-card-header h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--yellow), var(--pink), var(--cyan));
  border-radius: 2px;
}

.form-section-title {
  color: #444;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.form-control,
.form-select {
  padding: 12px;
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 0.25rem rgba(0, 210, 229, 0.25);
}

.toggle-password {
  cursor: pointer;
}

.toggle-password:focus {
  box-shadow: none;
}

.forgot-password {
  color: var(--cyan);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.forgot-password:hover {
  color: var(--pink);
  text-decoration: underline !important;
}

.separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
}

.separator::before,
.separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #eee;
}

.separator span {
  padding: 0 10px;
  color: #777;
  font-size: 0.9rem;
}

.social-login {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.social-btn {
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background-color: #f8f9fa;
}

.back-to-home {
  color: #666;
  transition: color 0.3s;
}

.back-to-home:hover {
  color: var(--pink);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .auth-card {
  padding: 25px;
  }

  .auth-section {
  padding: 30px 0;
  }
}
