/*!*********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./blocks/swish-form/src/style.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************/
/**
 * Swish Form Block - Frontend Styles
 * Style-aware design that adapts to theme variations
 *
 * @package SwishfolioCore
 */
.sfcore-swish-form *,
.sfcore-swish-form *::before,
.sfcore-swish-form *::after {
  box-sizing: border-box;
}
.sfcore-swish-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
  overflow: hidden;
}
.sfcore-swish-form__form {
  background: var(--sf-color-surface);
  border: var(--sf-border);
  box-shadow: var(--sf-shadow-lg);
  padding: 32px;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 600px) {
  .sfcore-swish-form__form {
    padding: 20px;
    box-shadow: var(--sf-shadow-md);
  }
}
.sfcore-swish-form__fields {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .sfcore-swish-form__fields {
    gap: 16px;
    margin-bottom: 16px;
  }
}
.sfcore-swish-form__field--full {
  width: 100%;
}
.sfcore-swish-form__field--half {
  width: calc(50% - 12px);
}
@media (max-width: 600px) {
  .sfcore-swish-form__field--half {
    width: 100%;
  }
}
.sfcore-swish-form__label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--wp--preset--color--contrast);
}
.sfcore-swish-form__required {
  color: var(--wp--preset--color--accent-1);
  margin-left: 4px;
}
.sfcore-swish-form__input, .sfcore-swish-form__textarea, .sfcore-swish-form__select {
  width: 100%;
  max-width: 100%;
  padding: 14px 18px;
  border: var(--sf-border);
  background: var(--wp--preset--color--base);
  color: var(--wp--preset--color--contrast);
  font-family: inherit;
  font-size: 16px;
  box-shadow: var(--sf-shadow-md);
  transition: all 0.1s ease-out;
}
.sfcore-swish-form__input:focus, .sfcore-swish-form__textarea:focus, .sfcore-swish-form__select:focus {
  outline: none;
  border-color: var(--wp--preset--color--accent-4);
  box-shadow: var(--sf-shadow-lg);
  transform: var(--sf-hover-transform);
}
.sfcore-swish-form__input::-moz-placeholder, .sfcore-swish-form__textarea::-moz-placeholder, .sfcore-swish-form__select::-moz-placeholder {
  color: var(--sf-color-muted);
}
.sfcore-swish-form__input::placeholder, .sfcore-swish-form__textarea::placeholder, .sfcore-swish-form__select::placeholder {
  color: var(--sf-color-muted);
}
.sfcore-swish-form__input:invalid:not(:-moz-placeholder), .sfcore-swish-form__textarea:invalid:not(:-moz-placeholder), .sfcore-swish-form__select:invalid:not(:-moz-placeholder) {
  border-color: var(--wp--preset--color--accent-1);
}
.sfcore-swish-form__input:invalid:not(:placeholder-shown), .sfcore-swish-form__textarea:invalid:not(:placeholder-shown), .sfcore-swish-form__select:invalid:not(:placeholder-shown) {
  border-color: var(--wp--preset--color--accent-1);
}
@media (max-width: 600px) {
  .sfcore-swish-form__input, .sfcore-swish-form__textarea, .sfcore-swish-form__select {
    padding: 12px 14px;
    box-shadow: var(--sf-shadow-sm);
    font-size: 16px;
  }
  .sfcore-swish-form__input:focus, .sfcore-swish-form__textarea:focus, .sfcore-swish-form__select:focus {
    box-shadow: var(--sf-shadow-md);
  }
}
.sfcore-swish-form__textarea {
  min-height: 150px;
  resize: vertical;
}
.sfcore-swish-form__select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%270 0 12 12%27%3E%3Cpath fill=%27currentColor%27 d=%27M6 9L1 4h10z%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 48px;
}
@media (max-width: 600px) {
  .sfcore-swish-form__select {
    background-position: right 14px center;
    padding-right: 40px;
  }
}
.sfcore-swish-form__checkbox {
  width: 24px;
  height: 24px;
  border: var(--sf-border);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: var(--wp--preset--color--base);
  vertical-align: middle;
  margin: 0;
  flex-shrink: 0;
  box-shadow: var(--sf-shadow-sm);
  transition: all 0.1s ease-out;
}
.sfcore-swish-form__checkbox:checked {
  background: var(--wp--preset--color--accent-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2716%27 height=%2716%27 viewBox=%270 0 24 24%27 fill=%27%23000%27%3E%3Cpath d=%27M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.sfcore-swish-form__checkbox:focus {
  outline: none;
  box-shadow: var(--sf-shadow-md);
  transform: var(--sf-hover-transform);
}
.sfcore-swish-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  color: var(--wp--preset--color--contrast);
}
.sfcore-swish-form__checkbox-text {
  padding-top: 2px;
}
.sfcore-swish-form__field-error {
  color: var(--wp--preset--color--accent-1);
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  min-height: 18px;
}
.sfcore-swish-form__submit {
  margin-top: 8px;
}
.sfcore-swish-form__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: var(--sf-border);
  box-shadow: var(--sf-shadow-sm);
  cursor: pointer;
  transition: all 0.1s ease-out;
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--accent-5);
  min-width: 180px;
}
.sfcore-swish-form__button:hover:not(:disabled) {
  box-shadow: var(--sf-shadow-lg);
  transform: var(--sf-hover-transform);
}
.sfcore-swish-form__button:active:not(:disabled) {
  box-shadow: none;
  transform: var(--sf-active-transform);
}
.sfcore-swish-form__button:disabled {
  cursor: wait;
  opacity: 0.8;
}
@media (max-width: 600px) {
  .sfcore-swish-form__button {
    width: 100%;
    padding: 16px 24px;
    min-width: unset;
  }
}
.sfcore-swish-form__button-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sfcore-swish-form__button-loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 3px solid var(--wp--preset--color--contrast);
  border-top-color: transparent;
  border-radius: var(--sf-radius-full, 9999px);
  animation: swish-form-spin 0.8s linear infinite;
}
.sfcore-swish-form__messages {
  margin-top: 16px;
  font-weight: 600;
  font-size: 14px;
}
.sfcore-swish-form__messages--success {
  color: #22c55e;
  padding: 16px;
  background: #dcfce7;
  border: var(--sf-border);
  border-color: #22c55e;
}
.sfcore-swish-form__messages--error {
  color: var(--wp--preset--color--accent-1);
  padding: 16px;
  background: color-mix(in srgb, var(--wp--preset--color--accent-1) 10%, var(--wp--preset--color--base));
  border: var(--sf-border);
  border-color: var(--wp--preset--color--accent-1);
}
.sfcore-swish-form--subscription .sfcore-swish-form__form {
  background: color-mix(in srgb, var(--wp--preset--color--accent-3) 20%, var(--sf-color-surface));
}
.sfcore-swish-form--subscription .sfcore-swish-form__button {
  background: var(--wp--preset--color--accent-3);
}
.sfcore-swish-form--subscription .sfcore-swish-form__button:hover:not(:disabled) {
  background: color-mix(in srgb, var(--wp--preset--color--accent-3) 80%, var(--wp--preset--color--base));
}
@keyframes swish-form-spin {
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=style-index.css.map*/