/* Auth Component Styling */
.auth-section {
  border-bottom: 1px solid rgba(108, 117, 125, 0.15);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.auth-section .btn[data-auth="login"]:hover {
  background-color: var(--primary-green) !important;
  color: white !important;
  border-color: var(--primary-green) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(20, 121, 72, 0.2);
}

.auth-section .card {
  border: 1px solid rgba(20, 121, 72, 0.1);
  box-shadow: 0 2px 4px rgba(20, 121, 72, 0.05);
}

.mobile-auth .btn {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.mobile-auth .btn:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Loading state for auth buttons */
.auth-loading {
  opacity: 0.6;
  pointer-events: none;
}

.auth-loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Consistent separator styling */
.section-separator {
  border-top: 1px solid rgba(108, 117, 125, 0.15);
  padding-top: 1rem;
  margin-top: 1rem;
}

.section-separator-bottom {
  border-bottom: 1px solid rgba(108, 117, 125, 0.15);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

/* Organization subscription message styling */
.org-subscription-message {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background-color: rgba(108, 117, 125, 0.1);
  border-radius: 0.375rem;
  border: 1px solid rgba(108, 117, 125, 0.2);
  margin-top: 0.5rem;
}

.org-subscription-message i {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.org-subscription-message span {
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.2;
}
