@charset "UTF-8";
/**
 * Convert pixels to rem units
 * @param {Number} $pixels - The pixel value to convert
 * @return {Number} - The rem equivalent
 * 
 * Usage:
 * font-size: toRem(24px);        // 1.5rem
 * padding: toRem(32px) toRem(16px); // 2rem 1rem
 */
/**
 * Convert rem to pixels
 * @param {Number} $rems - The rem value to convert
 * @param {Number} $base-font-size - The base font size (default: 16px)
 * @return {Number} - The pixel equivalent
 * 
 * Usage:
 * width: px(1.5rem);  // 24px
 */
/**
 * Strip units from a number
 * @param {Number} $number - Number with or without units
 * @return {Number} - Unitless number
 */
/**
 * Fluid typography - calculate font size between two breakpoints
 * @param {Number} $min-size - Minimum font size
 * @param {Number} $max-size - Maximum font size  
 * @param {Number} $min-width - Minimum viewport width
 * @param {Number} $max-width - Maximum viewport width
 * @return {String} - CSS clamp() function
 * 
 * Usage:
 * font-size: fluid-type(toRem(16px), toRem(24px), 320px, 1440px);
 */
/**
 * Calculate line height ratio
 * @param {Number} $font-size - Font size
 * @param {Number} $line-height - Desired line height
 * @return {Number} - Line height ratio
 * 
 * Usage:
 * line-height: line-height-ratio(toRem(16px), toRem(24px)); // 1.5
 */
/**
 * Get a color from a nested map
 * @param {Map} $map - The color map
 * @param {String} $keys... - The nested keys
 * @return {Color} - The color value
 * 
 * Usage:
 * color: map-deep-get($theme-colors, 'primary', 'base');
 */
/**
 * Power function (since Sass doesn't have built-in pow)
 * @param {Number} $base - Base number
 * @param {Number} $exponent - Exponent
 * @return {Number} - Result of base^exponent
 */
/**
 * Modular scale for typography
 * @param {Number} $increment - Scale increment (positive or negative)
 * @param {Number} $base - Base size (default: 1rem)
 * @param {Number} $ratio - Scale ratio (default: 1.25 - major third)
 * @return {Number} - Scaled size
 * 
 * Usage:
 * font-size: modular-scale(2);     // 1.5625rem (1.25^2)
 * font-size: modular-scale(-1);    // 0.8rem (1.25^-1)
 */
/**
 * Z-index management
 * @param {String} $layer - Layer name
 * @return {Number} - Z-index value
 */
/**
 * SVG Icon Path Function
 * @param {String} $icon-name - Name of the icon file (without .svg extension)
 * @return {String} - Full path to the icon
 * 
 * Usage:
 * background-image: url(icon-path('search'));
 */
/**
 * Common SVG Icons Map
 * Store commonly used SVG icons as encoded strings
 */
/**
 * Get SVG Icon as Data URI
 * @param {String} $icon-name - Name of the icon
 * @return {String} - Complete data URI for the SVG
 * 
 * Usage:
 * background-image: svg-icon('search');
 */
/**
 * Design Container - 1440px Design Width
 * Max-width: 1240px (1440px - 100px × 2)
 * Padding: 20px left/right for smaller screens
 * 
 * Usage:
 * @include container-design();
 * @include container-design(1.5rem); // Custom padding
 */
/**
 * Custom Container - Flexible max-width with consistent padding
 * @param {Number} $max-width - Maximum width (default: 1240px)
 * @param {Number} $padding - Left/right padding (default: 20px)
 * 
 * Usage:
 * @include container-custom(800px, 16px);
 * @include container-custom(toRem(1140px));
 */
/**
 * Full-width Container - 100% width with padding
 * @param {Number} $padding - Left/right padding (default: 20px)
 * 
 * Usage:
 * @include container-full();
 * @include container-full(1rem);
 */
/**
 * Advanced Border Radius Mixin (Backward Compatible)
 * Apply border-radius to specific corners or all corners
 * 
 * @param {String|Number} $corner-or-size - Corner name OR size for backward compatibility
 * @param {Number} $size - The radius size (when using corner names)
 * 
 * Backward Compatible Usage:
 * @include border-radius(10px);               // Old style: all corners
 * 
 * New Advanced Usage:
 * @include border-radius('all', 20px);        // All corners
 * @include border-radius('top', 15px);        // Top left & right
 * @include border-radius('right', 15px);      // Right top & bottom  
 * @include border-radius('bottom', 15px);     // Bottom left & right
 * @include border-radius('left', 10px);       // Left top & bottom
 * @include border-radius('top-left', 5px);    // Single corner
 * @include border-radius('top-right', 5px);   // Single corner
 * @include border-radius('bottom-left', 5px); // Single corner
 * @include border-radius('bottom-right', 5px);// Single corner
 */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/**
 * File-based SVG Icon Mixin (Recommended)
 * @param {String} $icon-name - Name of the icon file (without .svg extension)
 * @param {Number} $size - Size of the icon (default: 1rem)
 * 
 * Usage:
 * @include icon('arrow-down', 0.9rem);
 * @include icon('cart', 1.25rem);
 * 
 * Place your SVG files in: assets/icons/icon-name.svg
 */
/**
 * SVG Icon Mixin (For encoded SVGs in map)
 * @param {String} $icon-name - Name of the icon
 * @param {Number} $size - Size of the icon (default: 1rem)
 * @param {Color} $color - Color of the icon (default: currentColor)
 * 
 * Usage:
 * @include svg-icon('search');
 * @include svg-icon('cart', 1.5rem, #333);
 */
/**
 * Icon with Text Mixin
 * @param {String} $icon-name - Name of the icon
 * @param {String} $position - Position of icon (before, after)
 * @param {Number} $size - Size of the icon (default: 1rem)
 * @param {Number} $spacing - Space between icon and text (default: 0.5rem)
 * 
 * Usage:
 * @include icon-with-text('search', 'before');
 */
/**
 * Content Type Color Mixin
 * Applies colors based on body class fot-page--{slug}
 * @param {String} $property - CSS property to apply color to (color, background-color, border-color, etc.)
 * @param {String} $shade - Color shade (dark, medium, light, pastel, gradient)
 * 
 * Usage:
 * @include content-type-color('color', 'dark');
 * @include content-type-color('background', 'gradient');
 * @include content-type-color('border-color', 'medium');
 */
/**
 * Quick Content Type Color Functions
 * Shorthand mixins for common use cases
 */
/**
 * Content Type Search Icon Mixin
 * Applies different search icons based on body class fot-page--{slug}
 * @param {Number} $width - Width of the icon (default: 20px)
 * @param {Number} $height - Height of the icon (default: 20px)
 * 
 * Usage:
 * @include content-type-search-icon();
 * @include content-type-search-icon(toRem(24px), toRem(24px));
 */
.fot-custom-form-block {
  background: #FFFFFF;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .fot-custom-form-block {
    padding: 2rem 0;
  }
}
@media (max-width: 767.98px) {
  .fot-custom-form-block {
    padding: 2.5rem 0;
  }
}
.fot-custom-form-block__container {
  max-width: 50rem;
}
@media (max-width: 767.98px) {
  .fot-custom-form-block__container {
    padding: 0;
  }
}
.fot-custom-form-block__card {
  background: #E4F2F9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767.98px) {
  .fot-custom-form-block__card {
    border-radius: 0.75rem;
  }
}
.fot-custom-form-block__header {
  background: #002C87;
  padding: 1rem 2rem;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .fot-custom-form-block__header {
    padding: 1.75rem 2.25rem;
  }
}
@media (max-width: 767.98px) {
  .fot-custom-form-block__header {
    padding: 1.5rem;
  }
}
.fot-custom-form-block__title {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
  text-align: left;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .fot-custom-form-block__title {
    font-size: 1.75rem;
  }
}
@media (max-width: 767.98px) {
  .fot-custom-form-block__title {
    font-size: 1.5rem;
  }
}
.fot-custom-form-block__form-content {
  padding: 2rem;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .fot-custom-form-block__form-content {
    padding: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  .fot-custom-form-block__form-content {
    padding: 1.5rem;
  }
}
.fot-custom-form-block__description {
  font-size: 1rem;
  color: #232325;
  margin: 0 0 1rem;
  line-height: 1.5;
  text-align: left;
}
@media (max-width: 767.98px) {
  .fot-custom-form-block__description {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}
.fot-custom-form-block__success {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #EBFAEB;
  border: 2px solid #CEEECE;
  border-radius: 0.9375rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  animation: slideInDown 0.4s ease-out;
}
@media (max-width: 767.98px) {
  .fot-custom-form-block__success {
    padding: 0.875rem 1rem;
    gap: 0.625rem;
  }
}
.fot-custom-form-block__success-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.fot-custom-form-block__success-icon img {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}
@media (max-width: 767.98px) {
  .fot-custom-form-block__success-icon img {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.fot-custom-form-block__success-message {
  flex: 1;
  font-size: 0.875rem;
  color: #002100;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .fot-custom-form-block__success-message {
    font-size: 0.8125rem;
  }
}
.fot-custom-form-block__error-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #FF0000;
  border: 2px solid #C40000;
  border-radius: 0.9375rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  animation: shake 0.4s ease-in-out;
}
@media (max-width: 767.98px) {
  .fot-custom-form-block__error-banner {
    padding: 0.875rem 1rem;
    gap: 0.625rem;
  }
}
.fot-custom-form-block__error-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
}
@media (max-width: 767.98px) {
  .fot-custom-form-block__error-icon {
    width: 1.125rem;
    height: 1.125rem;
  }
}
.fot-custom-form-block__error-content {
  flex: 1;
}
.fot-custom-form-block__error-message {
  font-size: 0.875rem;
  color: #232325;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .fot-custom-form-block__error-message {
    font-size: 0.8125rem;
  }
}
.fot-custom-form-block__submit {
  margin-top: 1.5rem;
  position: relative;
}
.fot-custom-form-block__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.fot-custom-form-block__submit-text, .fot-custom-form-block__submit-loading {
  transition: opacity 0.3s ease;
}
.fot-custom-form-block__submit-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.fot-custom-form-block .fot-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.fot-custom-form-block.alignwide .fot-custom-form-block__container {
  max-width: 75rem;
}

.fot-custom-form-block.alignfull .fot-custom-form-block__container {
  max-width: 100%;
  padding: 0 5rem;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .fot-custom-form-block.alignfull .fot-custom-form-block__container {
    padding: 0 2.5rem;
  }
}
@media (max-width: 767.98px) {
  .fot-custom-form-block.alignfull .fot-custom-form-block__container {
    padding: 0 1rem;
  }
}

.fot-form__field--radio {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.fot-form__field--radio .fot-form__radio-label {
  font-size: 1rem;
  font-weight: 100;
  color: #232325;
  margin: 0;
}
.fot-form__field--radio .fot-form__radio-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fot-form__field--radio .fot-form__radio-group--horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.fot-form__field--radio .fot-form__radio-option {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.fot-form__field--radio .fot-form__radio-option input[type=radio] {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  cursor: pointer;
  accent-color: #002C87;
}
.fot-form__field--radio .fot-form__radio-option label {
  font-size: 1rem;
  color: #232325;
  cursor: pointer;
  margin: 0;
  user-select: none;
  font-weight: 100;
}

.fot-form__field--checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.fot-form__field--checkbox-group .fot-form__checkbox-group-label {
  font-size: 1rem;
  font-weight: 100;
  color: #232325;
  margin: 0;
}
.fot-form__field--checkbox-group .fot-form__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fot-form__field--checkbox-group .fot-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0;
}
.fot-form__field--checkbox-group .fot-form__checkbox input[type=checkbox] {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  cursor: pointer;
  accent-color: #002C87;
  flex-shrink: 0;
}
.fot-form__field--checkbox-group .fot-form__checkbox label {
  font-size: 1rem;
  color: #232325;
  cursor: pointer;
  margin: 0;
  user-select: none;
  line-height: 1.5;
  font-weight: 100;
}

.fot-form__section {
  margin: 2rem 0 1.5rem 0;
  padding-top: 1.5rem;
  border-top: 2px solid #FFFFFF;
}
.fot-form__section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.fot-form__section .fot-form__section-heading {
  font-size: 1.25rem;
  font-weight: 100;
  color: #232325;
  margin: 0 0 0.5rem 0;
}
.fot-form__section .fot-form__section-description {
  font-size: 0.875rem;
  color: #232325;
  margin: 0;
  opacity: 0.8;
}

/*# sourceMappingURL=custom-form-block.css.map */
