/* [project]/src/components/Icon/Icon.css [app-client] (css) */
.custom-icon-wrapper {
  vertical-align: middle;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  line-height: 1;
  transition: all .2s ease-in-out;
  display: inline-flex;
}

.custom-icon {
  vertical-align: middle;
  transition: color .15s, fill .15s, stroke .15s, transform .15s;
  display: inline-block;
}

.custom-icon-state-default {
  color: var(--color-text-secondary, #666);
}

.custom-icon-state-disabled, .custom-icon-disabled {
  opacity: .7;
  cursor: not-allowed;
  pointer-events: none;
  color: var(--color-bg-muted, #c7c7cc) !important;
  fill: var(--color-bg-muted, #c7c7cc) !important;
}

.custom-icon-wrapper.custom-icon-wrapper-disabled {
  width: 19.506px;
  height: 18px;
}

.custom-icon-state-active, .custom-icon-active {
  color: var(--color-text-primary, #000) !important;
  fill: var(--color-text-primary, #000) !important;
}

.custom-icon-wrapper.custom-icon-wrapper-active {
  width: 18px;
  height: 18.749px;
}

.custom-icon-wrapper.custom-icon-wrapper-danger, .custom-icon-state-danger {
  aspect-ratio: 1;
  background: var(--color-accent-red, #ed1324);
  box-sizing: border-box;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  display: inline-flex;
  color: var(--color-text-white, #fff) !important;
}

.custom-icon-wrapper.custom-icon-wrapper-danger .custom-icon {
  fill: var(--color-text-white, #fff) !important;
  stroke: var(--color-text-white, #fff) !important;
}

.custom-icon-color-green {
  color: var(--color-primary-green, #13a538);
}

.custom-icon-color-orange {
  color: var(--color-accent-orange, #f39200);
}

.custom-icon-color-red {
  color: var(--color-accent-red, #ed1324);
}

.custom-icon-color-black {
  color: var(--color-text-primary, #000);
}

.custom-icon-color-muted {
  color: var(--color-bg-muted, #c7c7cc);
}

.custom-icon-color-secondary {
  color: var(--color-text-secondary, #666);
}

.custom-icon-color-white {
  color: var(--color-text-white, #fff);
}

.custom-icon-clickable {
  cursor: pointer;
}

.custom-icon-clickable:hover {
  opacity: .8;
  transform: scale(1.08);
}

.custom-icon-clickable:active {
  transform: scale(.95);
}

.custom-icon-sdg {
  object-fit: contain;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: auto;
  border-radius: 4px;
  box-shadow: 0 1px 2px #00000014;
}

/* [project]/src/components/Card/BecomeMember.css [app-client] (css) */
.become-member-card {
  box-sizing: border-box;
  background: #fff;
  border-radius: 24px;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  padding: 36px 32px;
  display: flex;
  box-shadow: 0 1px 4px #0c0c0d0d, 0 1px 4px #0c0c0d1a;
}

.become-member-header {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.become-member-badge {
  color: #13a538;
  font-family: League Spartan, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.become-member-title {
  color: #000;
  margin: 0;
  font-family: League Spartan, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
}

.become-member-steps {
  flex-direction: column;
  gap: 12px;
  width: 100%;
  display: flex;
}

.become-member-step-item {
  outline-offset: -1px;
  cursor: pointer;
  box-sizing: border-box;
  background: #fff;
  border-radius: 8px;
  outline: 1px solid #dbdbdb;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  transition: all .2s;
  display: flex;
}

.become-member-step-item:hover {
  background: #f9fafb;
  outline-color: #13a538;
}

.become-member-step-item.is-open {
  background: #f4fbf6;
  outline: 1.5px solid #13a538;
}

.become-member-step-header {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  display: flex;
}

.become-member-step-left {
  flex: 1;
  align-items: center;
  gap: 12px;
  display: flex;
}

.become-member-step-num {
  color: #13a538;
  text-align: center;
  flex-shrink: 0;
  width: 24px;
  font-family: League Spartan, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.become-member-step-icon-check {
  color: #13a538;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.become-member-step-title {
  color: #121212;
  margin: 0;
  font-family: League Spartan, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.become-member-step-chevron {
  color: #333;
  flex-shrink: 0;
  transition: transform .2s;
}

.become-member-step-chevron.is-open {
  transform: rotate(180deg);
}

.become-member-step-body {
  color: #555;
  padding-top: 4px;
  padding-left: 36px;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.become-member-benefits {
  flex-direction: column;
  gap: 10px;
  width: 100%;
  display: flex;
}

.become-member-benefits-label {
  color: #666;
  margin: 0;
  font-family: League Spartan, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.become-member-benefits-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  display: grid;
}

.become-member-benefit-card {
  outline-offset: -1px;
  cursor: pointer;
  background: #f8f8f8;
  border-radius: 16px;
  outline: 1px solid #dbdbdb;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  transition: all .2s;
  display: flex;
}

.become-member-benefit-card:hover {
  background: #fff;
  outline-color: #13a538;
  box-shadow: 0 2px 8px #13a53814;
}

.become-member-benefit-top {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.become-member-benefit-icon {
  color: #333;
  width: 22px;
  height: 22px;
}

.become-member-benefit-title {
  color: #000;
  margin: 0;
  font-family: League Spartan, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}

.become-member-benefit-desc {
  color: #666;
  margin: 0;
  font-family: Open Sans, sans-serif;
  font-size: 13px;
  line-height: 1.45;
}

.become-member-actions-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
  display: flex;
}

.become-member-btn-secondary {
  outline-offset: -1px;
  color: #13a538;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  outline: 1px solid #13a538;
  padding: 10px 18px;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all .15s;
}

.become-member-btn-secondary:hover {
  background: #f4fbf6;
}

.become-member-btn-primary {
  color: #fff;
  cursor: pointer;
  background: #13a538;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all .15s;
}

.become-member-btn-primary:hover {
  background: #0f842d;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .become-member-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* [project]/src/components/Card/ApplyMember.css [app-client] (css) */
.apply-member-card {
  box-sizing: border-box;
  background: #fff;
  border-radius: 24px;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 36px 32px;
  display: flex;
  box-shadow: 0 1px 4px #0c0c0d0d, 0 1px 4px #0c0c0d1a;
}

.apply-member-header {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.apply-member-badge {
  color: #13a538;
  font-family: League Spartan, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.apply-member-title {
  color: #000;
  margin: 0;
  font-family: League Spartan, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
}

.apply-member-form {
  flex-direction: column;
  gap: 20px;
  width: 100%;
  display: flex;
}

.apply-member-section-label {
  color: #666;
  margin: 0;
  font-family: League Spartan, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.apply-member-field-group {
  flex-direction: column;
  gap: 6px;
  width: 100%;
  display: flex;
}

.apply-member-field-label {
  color: #000;
  font-family: League Spartan, sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.apply-member-input-wrap {
  outline-offset: -1px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 8px;
  outline: 1px solid #dbdbdb;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 12px 14px;
  transition: all .2s;
  display: flex;
}

.apply-member-input-wrap:focus-within {
  outline: 1.5px solid #13a538;
  box-shadow: 0 0 0 3px #13a5381f;
}

.apply-member-input-wrap.has-error {
  outline: 1.5px solid #ed1b24 !important;
  box-shadow: 0 0 0 3px #ed1b241f !important;
}

.apply-member-input-wrap.is-valid {
  outline: 1.5px solid #13a538 !important;
  box-shadow: 0 0 0 3px #13a5381f !important;
}

.apply-member-field-error {
  color: #ed1b24;
  margin-top: 4px;
  font-family: Open Sans, sans-serif;
  font-size: 13px;
  display: block;
}

.apply-member-field-hint {
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-family: Open Sans, sans-serif;
  font-size: 13px;
  display: flex;
}

.apply-member-field-hint.success {
  color: #13a538;
  font-weight: 500;
}

.apply-member-field-hint.checking {
  color: #71717a;
  font-style: italic;
}

.apply-member-input-status-icon {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.apply-member-input-spinner {
  border: 2px solid #e5e7eb;
  border-top-color: #13a538;
  border-radius: 50%;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  animation: .75s linear infinite apply-member-spin;
  display: inline-block;
}

@keyframes apply-member-spin {
  to {
    transform: rotate(360deg);
  }
}

.apply-member-input {
  color: #000;
  background: none;
  border: none;
  outline: none;
  width: 100%;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
}

.apply-member-input::placeholder {
  color: #c7c7cc;
}

.apply-member-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  display: grid;
}

.apply-member-divider {
  background: #dbdbdb;
  width: 100%;
  height: 1px;
  margin: 4px 0;
}

.apply-member-gov-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  display: flex;
}

.apply-member-gov-pill {
  outline-offset: -1px;
  color: #666;
  cursor: pointer;
  background: #f8f8f8;
  border: none;
  border-radius: 16px;
  outline: 1px solid #dbdbdb;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  transition: all .15s;
  display: inline-flex;
}

.apply-member-gov-pill:hover {
  background: #f4fbf6;
}

.apply-member-gov-pill.active {
  color: #000;
  background: #f8f8f8;
  outline: 1.5px solid #0f842d;
}

.apply-member-gov-dot {
  background: #666;
  border-radius: 9999px;
  width: 10px;
  height: 10px;
}

.apply-member-gov-pill.active .apply-member-gov-dot {
  background: #13a538;
}

.apply-member-submit-box {
  flex-direction: column;
  gap: 10px;
  width: 100%;
  display: flex;
}

.apply-member-btn-submit {
  color: #fff;
  cursor: pointer;
  background: #13a538;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 12px 14px;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.apply-member-btn-submit:hover:not(:disabled) {
  background: #0f842d;
  transform: translateY(-1px);
}

.apply-member-btn-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.apply-member-note {
  text-align: center;
  color: #666;
  margin: 0;
  font-family: Open Sans, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .apply-member-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* [project]/src/components/Card/AuthPage.css [app-client] (css) */
.auth-page-container {
  box-sizing: border-box;
  background: #f8f8f8;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 40px 80px;
  display: flex;
}

.auth-wrapper {
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 1280px;
  height: 600px;
  display: flex;
}

.auth-hero-card {
  box-sizing: border-box;
  background-image: url("/images/auth-hero-congress.jpg");
  background-position: center;
  background-size: cover;
  border-radius: 24px;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
  width: 628px;
  height: 600px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 4px #0c0c0d0d, 0 1px 4px #0c0c0d1a;
}

.auth-hero-overlay {
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(90deg, #ffffff8f 0%, #0000008f 0%), linear-gradient(360deg, #ed1324 0%, #f392008f 40%, #fff0 81%);
  width: 628px;
  height: 600px;
  position: absolute;
  top: 0;
  left: 0;
}

.auth-hero-content {
  z-index: 2;
  -webkit-backdrop-filter: blur(12px);
  background: #00000059;
  border-top-right-radius: 24px;
  border-bottom-left-radius: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  align-items: flex-start;
  gap: 8px;
  padding: 24px;
  display: flex;
  position: relative;
  box-shadow: 0 1px 4px #0c0c0d0d, 0 1px 4px #0c0c0d1a;
}

.auth-hero-accent-line {
  background: linear-gradient(90deg, #13a538 0%, #f39200 50%, #ed1324 100%);
  border-radius: 16px;
  align-self: stretch;
  height: 2px;
}

.auth-hero-badge {
  color: #fff;
  letter-spacing: .5px;
  font-family: League Spartan, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.auth-hero-title {
  color: #fff;
  word-wrap: break-word;
  align-self: stretch;
  margin: 0;
  font-family: League Spartan, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 38.4px;
}

.auth-hero-subtitle {
  color: #fff;
  word-wrap: break-word;
  align-self: stretch;
  margin: 0;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.auth-form-section {
  box-sizing: border-box;
  flex-direction: column;
  flex: 1 1 0;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  min-width: 440px;
  height: 600px;
  max-height: 600px;
  padding: 4px 10px 4px 4px;
  display: flex;
  overflow-y: auto;
}

.auth-form-section::-webkit-scrollbar {
  width: 6px;
}

.auth-form-section::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}

.auth-form-section::-webkit-scrollbar-thumb {
  background: #c7c7cc;
  border-radius: 8px;
}

.auth-form-section::-webkit-scrollbar-thumb:hover {
  background: #13a538;
}

.auth-tabs-row {
  z-index: 2;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 0;
  padding-left: 12px;
  display: flex;
  position: relative;
}

.auth-tab-btn {
  cursor: pointer;
  background: none;
  border: none;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 20px 0;
  transition: all .2s;
  display: inline-flex;
  position: relative;
}

.auth-tab-btn:hover {
  background: #fff9;
}

.auth-tab-text {
  color: #666;
  white-space: nowrap;
  font-family: League Spartan, sans-serif;
  font-size: 17px;
  font-weight: 600;
  transition: color .2s;
}

.auth-tab-btn.is-active .auth-tab-text {
  color: #000;
}

.auth-tab-indicator {
  background: none;
  border-radius: 16px;
  width: 100%;
  min-width: 100px;
  height: 4px;
  transition: all .2s;
}

.auth-tab-btn.is-active .auth-tab-indicator {
  background: linear-gradient(90deg, #13a538 0%, #f39200 50%, #ed1324 100%);
}

.auth-card {
  box-sizing: border-box;
  background: #fff;
  border-radius: 24px;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  padding: 36px 32px;
  display: flex;
  box-shadow: 0 1px 4px #0c0c0d0d, 0 1px 4px #0c0c0d1a;
}

.auth-header {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.auth-welcome-label {
  color: #13a538;
  font-family: League Spartan, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.auth-main-title {
  color: #000;
  margin: 0;
  font-family: League Spartan, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
}

.auth-form {
  flex-direction: column;
  gap: 20px;
  width: 100%;
  display: flex;
}

.auth-field-group {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.auth-field-label {
  color: #000;
  font-family: League Spartan, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.auth-input-wrapper {
  outline-offset: -1px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 8px;
  outline: 1px solid #dbdbdb;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  transition: all .2s;
  display: flex;
}

.auth-input-wrapper:focus-within {
  outline: 1.5px solid #13a538;
  box-shadow: 0 0 0 3px #13a5381f;
}

.auth-input {
  color: #000;
  background: none;
  border: none;
  outline: none;
  width: 100%;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
}

.auth-input::placeholder {
  color: #c7c7cc;
}

.auth-icon-toggle {
  cursor: pointer;
  color: #666;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: color .2s;
  display: flex;
}

.auth-icon-toggle:hover {
  color: #13a538;
}

.auth-forgot-link {
  text-align: right;
  color: #13a538;
  cursor: pointer;
  background: none;
  border: none;
  align-self: flex-end;
  padding: 0;
  font-family: League Spartan, sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: opacity .2s;
}

.auth-forgot-link:hover {
  opacity: .8;
  text-decoration: underline;
}

.auth-btn-submit {
  color: #fff;
  cursor: pointer;
  background: #13a538;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 12px 14px;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.auth-btn-submit:hover:not(:disabled) {
  background: #0f842d;
  transform: translateY(-1px);
}

.auth-btn-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.auth-footer-prompt {
  color: #666;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
}

.auth-link-green {
  color: #13a538;
  cursor: pointer;
  font-weight: 600;
  transition: opacity .2s;
}

.auth-link-green:hover {
  opacity: .85;
  text-decoration: underline;
}

.auth-expired-alert {
  outline-offset: -1px;
  box-sizing: border-box;
  background: #ed132429;
  border-radius: 8px;
  outline: 1px solid #ed1324;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  display: flex;
}

.auth-expired-alert-icon {
  color: #ed1324;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.auth-expired-alert-content {
  flex-direction: column;
  flex: 1;
  gap: 4px;
  display: flex;
}

.auth-expired-alert-title {
  color: #000;
  margin: 0;
  font-family: League Spartan, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.auth-expired-alert-text {
  color: #000;
  margin: 0;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.auth-alert-action-link {
  color: #13a538;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  display: inline;
}

.auth-alert-action-link:hover {
  opacity: .8;
}

.auth-error-banner {
  color: #b91c1c;
  background: #fee2e2;
  border-left: 4px solid #ef4444;
  border-radius: 8px;
  padding: 10px 14px;
  font-family: Open Sans, sans-serif;
  font-size: 13px;
}

@media (max-width: 1024px) {
  .auth-wrapper {
    flex-direction: column;
    height: auto;
  }

  .auth-hero-card {
    width: 100%;
    height: auto;
    min-height: 420px;
  }

  .auth-hero-overlay {
    width: 100%;
    height: 100%;
  }

  .auth-form-section {
    width: 100%;
    min-width: 0;
    height: auto;
    max-height: none;
  }

  .auth-page-container {
    padding: 24px 16px;
  }
}

/*# sourceMappingURL=src_components_0b2fan9._.css.map*/