/** Native Ultimate Member authentication surfaces. */
/**
 * Design tokens for ca-custom plugin
 * Based on .example/script/_variables.scss structure
 * 
 * Centralized variables to eliminate duplication across SCSS files
 */
/**
 * Typography System
 * Migrated from $font-attributes-map
 */
/**
 * Font Sizes - Title
 */
/**
 * Font Sizes - Subtitle
 */
/**
 * Font Sizes - Text
 */
/**
 * Font Sizes - Caption
 */
/**
 * Font Weights
 */
/**
 * Font Weights - Title
 */
/**
 * Font Weights - Subtitle
 */
/**
 * Font Weights - Text
 */
/**
 * Font Weights - Caption
 */
/**
 * Line Heights
 */
/**
 * Responsive Font Sizes
 * Base font sizes for root element
 */
/**
 * Spacing Scale
 * Base unit: 8px for consistency
 */
/**
 * Legacy spacing aliases
 */
/**
 * Borders
 */
/**
 * Z-index Scale
 */
/**
 * Breakpoints
 */
/**
 * Legacy breakpoint aliases
 */
/**
 * Container Widths
 */
/**
 * Shadows
 */
/**
 * Transitions
 */
/**
 * Common transitions
 */
/**
 * WordPress Admin Sidebar
 */
/**
 * Font attributes map for backward compatibility
 * Used by front-default.scss to generate utility classes
 */
/**
 * Reusable mixins for ca-custom plugin
 * Based on .example/script/_mixins.scss patterns
 * 
 * Common patterns and utilities for consistent styling
 */
/**
 * Responsive breakpoint mixins
 * Mobile-first approach with multiple breakpoints
 */
/**
 * Legacy responsive mixins for backward compatibility
 */
/**
 * Named breakpoint mixins
 */
/**
 * Flexbox utilities
 */
/**
 * Grid Layout Mixins
 */
/**
 * Button Mixins
 */
/**
 * Card Component Mixins
 */
/**
 * Form Control Mixins
 */
/**
 * Text Utilities
 */
/**
 * Position Utilities
 */
/**
 * Aspect Ratio Mixins
 */
/**
 * Scrollbar Styling
 */
/**
 * Loading States
 */
@keyframes ca-skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/**
 * Overlay Mixins
 */
/**
 * Animation Mixins
 */
@keyframes ca-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/**
 * Utility Mixins
 */
/**
 * Container Mixins
 */
/**
 * WordPress Specific Mixins
 */
/**
 * Apply theme CSS custom properties
 * Usage: @include theme-vars;
 */
/**
 * Theme-aware property mixin
 * Usage: @include themed(background-color, "bg-primary");
 */
/**
 * Quick theme background
 */
/**
 * Quick theme text color
 */
/**
 * Quick theme border
 */
/**
 * Responsive image mixins
 */
/**
 * Background image with cover
 */
/**
 * Modal component mixins
 */
/**
 * Admin box mixin
 */
/**
 * Filter container mixin
 */
/**
 * Pagination mixin
 */
/**
 * Status badge mixin
 */
/**
 * Notice/Alert box mixin
 */
.ca-theme.ca-theme--auth {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.ca-theme.ca-theme--auth .ca-theme-main--auth {
  flex: 1 1 auto;
  display: flex;
  min-width: 0;
}
.ca-theme.ca-theme--auth .ca-theme-auth-section {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  background: #f5f5f5;
  background-image: none;
  display: flex;
  align-items: stretch;
  padding: 20px 32px;
}
/* Explicitly win over front-theme.scss regardless of load order. */
.ca-theme.ca-theme--auth .ca-theme-auth-section .ca-theme-section__inner {
  width: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page {
  box-sizing: border-box;
  width: 100%;
  max-width: 460px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  padding: clamp(32px, 5vw, 40px);
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-page__title.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-page__tabs {
  display: flex;
  min-width: 0;
  gap: 24px;
  align-items: flex-end;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 28px;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-page__tab {
  min-width: 0;
  flex: 0 1 auto;
  white-space: nowrap;
  min-height: 44px;
  padding: 8px 0 12px;
  color: #777;
  font-size: 16px;
  line-height: 1.3;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-page__tab:hover, .ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-page__tab:focus-visible {
  color: #1a1a1a;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-page__tab.is-active {
  color: #1a1a1a;
  font-weight: 700;
  border-bottom-color: #78d9bd;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-page__tab:focus-visible, .ca-theme.ca-theme--auth .ca-theme-auth-page .um a:focus-visible, .ca-theme.ca-theme--auth .ca-theme-auth-page .um input:focus-visible, .ca-theme.ca-theme--auth .ca-theme-auth-page .um button:focus-visible {
  outline: 3px solid #78d9bd;
  outline-offset: 2px;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-page__form, .ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-shortcode, .ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-shortcode__form, .ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-shortcode__social, .ca-theme.ca-theme--auth .ca-theme-auth-page .um, .ca-theme.ca-theme--auth .ca-theme-auth-page .um-form {
  width: 100%;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-shortcode__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0;
  color: #888;
  font-size: 13px;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-shortcode__divider::before, .ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-shortcode__divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #e5e5e5;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-shortcode__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-shortcode__social .um-button-social-wrapper {
  margin-bottom: 0 !important;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-shortcode__social .um-button-social {
  margin-bottom: 10px !important;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-shortcode__social .um-button-social:last-child {
  margin-bottom: 0 !important;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .um-button-social {
  width: 100% !important;
  min-height: 49px !important;
  margin: 0 0 10px !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .um-button-social i, .ca-theme.ca-theme--auth .ca-theme-auth-page .um-button-social svg, .ca-theme.ca-theme--auth .ca-theme-auth-page .um-button-social img, .ca-theme.ca-theme--auth .ca-theme-auth-page .um-social-login-icon, .ca-theme.ca-theme--auth .ca-theme-auth-page .um-button-social .um-faicon {
  display: inline-flex !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 20px;
  max-width: 26px;
  align-items: center;
  justify-content: center;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .um-button-social.um-button-google {
  background: #4285f4 !important;
  color: #fff !important;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .um-button-social.um-button-kakao {
  background: #fee500 !important;
  color: #1a1a1a !important;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .um-button-social.um-button-naver {
  background: #03c75a !important;
  color: #fff !important;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .um-button-social:hover, .ca-theme.ca-theme--auth .ca-theme-auth-page .um-button-social:focus-visible {
  filter: brightness(0.96);
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .um .um-form input[type="text"], .ca-theme.ca-theme--auth .ca-theme-auth-page .um .um-form input[type="search"], .ca-theme.ca-theme--auth .ca-theme-auth-page .um .um-form input[type="tel"], .ca-theme.ca-theme--auth .ca-theme-auth-page .um .um-form input[type="email"], .ca-theme.ca-theme--auth .ca-theme-auth-page .um .um-form input[type="password"], .ca-theme.ca-theme--auth .ca-theme-auth-page .um .um-form textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 49px;
  border: 1px solid #d4d4d4 !important;
  border-radius: 10px;
  padding: 14px 16px !important;
  font-size: 16px !important;
  background: #fff !important;
  color: #1a1a1a;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .um .um-form input:focus, .ca-theme.ca-theme--auth .ca-theme-auth-page .um .um-form textarea:focus {
  border-color: #78d9bd !important;
  box-shadow: 0 0 0 3px rgba(120, 217, 189, 0.3) !important;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page input[type="submit"].um-button, .ca-theme.ca-theme--auth .ca-theme-auth-page button.um-button:not(.um-button-social) {
  width: 100% !important;
  min-height: 50px;
  border-radius: 10px !important;
  background: #1a1a1a !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page input[type="submit"].um-button:focus-visible, .ca-theme.ca-theme--auth .ca-theme-auth-page button.um-button:not(.um-button-social):focus-visible {
  outline: 3px solid #78d9bd;
  outline-offset: 2px;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page input[type="submit"].um-button:disabled, .ca-theme.ca-theme--auth .ca-theme-auth-page button.um-button:not(.um-button-social):disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .um input::placeholder, .ca-theme.ca-theme--auth .ca-theme-auth-page .um textarea::placeholder {
  color: #666;
  opacity: 1;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .um-field-checkbox-option {
  color: #666 !important;
  font-size: 14px !important;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .um-field-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: #78d9bd;
}
.ca-theme.ca-theme--auth .ca-theme-auth-page .um-notice, .ca-theme.ca-theme--auth .ca-theme-auth-page .um-error, .ca-theme.ca-theme--auth .ca-theme-auth-page .um-field-error {
  display: block !important;
  color: #9b2525;
}
@media (max-width: 520px) {
  .ca-theme.ca-theme--auth .ca-theme-auth-section {
    padding: 20px;
  }
  .ca-theme.ca-theme--auth .ca-theme-auth-page {
    padding: 32px 20px;
  }
  .ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-page__tabs {
    gap: 12px;
  }
  .ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-page__tab {
    font-size: 15px;
  }
}
@media (max-width: 375px) {
  .ca-theme.ca-theme--auth .ca-theme-auth-page {
    padding-left: 20px;
    padding-right: 20px;
  }
  .ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-page__tabs {
    gap: 12px;
  }
  .ca-theme.ca-theme--auth .ca-theme-auth-page .ca-theme-auth-page__tab {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ca-theme.ca-theme--auth .ca-theme-auth-page *, .ca-theme.ca-theme--auth .ca-theme-auth-page *::before, .ca-theme.ca-theme--auth .ca-theme-auth-page *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
