/** Shopify CDN: Minification failed

Line 7:2 Unexpected "<"
Line 191:2 Unexpected "<"

**/
  <style>
    /* Custom font for a modern look */
    body {
      font-family: 'Inter', sans-serif;
      background-color: #f0f2f5; /* Light gray background */
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh; /* Full viewport height */
      margin: 0;
    }

    /* Main container for centering the form */
    .form-container {
      max-width: 576px; /* Equivalent to Tailwind's max-w-lg (512px) + some buffer */
      width: 100%;
      padding: 16px; /* p-4 */
      margin-left: auto;
      margin-right: auto;
    }

    /* Form card styling */
    .form-card {
      background-color: #ffffff; /* bg-white */
      padding: 24px; /* p-6 */
      border-radius: 12px; /* rounded-xl */
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
      border: 1px solid #e5e7eb; /* border border-gray-200 */
    }

    /* Form title */
    .form-title {
      font-size: 1.875rem; /* text-3xl */
      font-weight: 700; /* font-bold */
      color: #1f2937; /* text-gray-800 */
      margin-bottom: 24px; /* mb-6 */
      text-align: center; /* text-center */
    }

    /* Form fields spacing */
    .form-fields-group {
      display: flex;
      flex-direction: column;
      gap: 20px; /* space-y-5 */
    }

    /* Individual form field container */
    .cart-attribute-field {
      margin-bottom: 0; /* Handled by gap in form-fields-group */
    }

    /* Label styling */
    .form-label {
      display: block;
      color: #374151; /* text-gray-700 */
      font-size: 0.875rem; /* text-sm */
      font-weight: 500; /* font-medium */
      margin-bottom: 4px; /* mb-1 */
    }

    /* Input and textarea styling */
    .form-input {
      width: 100%;
      padding: 10px 16px; /* px-4 py-2 */
      border: 1px solid #d1d5db; /* border border-gray-300 */
      border-radius: 8px; /* rounded-lg */
      color: #1f2937; /* text-gray-800 */
      transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    }

    .form-input::placeholder {
      color: #9ca3af; /* placeholder-gray-400 */
    }

    .form-input:focus {
      outline: none;
      border-color: #3b82f6; /* focus:border-blue-500 */
      box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5); /* focus:ring-2 focus:ring-blue-500 */
    }

    textarea.form-input {
      resize: vertical; /* resize-y */
    }

    /* Submit button styling */
    .form-button {
      width: 100%;
      background-color: #D02E2E; /* bg-blue-600 */
      color: #ffffff; /* text-white */
      font-weight: 600; /* font-semibold */
      padding: 12px 24px; /* py-3 px-6 */
      border-radius: 8px; /* rounded-lg */
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }

    .form-button:hover {
      background-color: #000000; /* hover:bg-blue-700 */
      transform: scale(1.02); /* hover:scale-105 */
      box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.15), 0 3px 6px -1px rgba(0, 0, 0, 0.08);
    }

    .form-button:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5), 0 0 0 6px rgba(59, 130, 246, 0.2); /* focus:ring-2 focus:ring-blue-500 focus:ring-offset-2 */
    }

    /* Status message styling */
    .status-message {
      text-align: center;
      font-size: 0.875rem; /* text-sm */
      color: #4a5568; /* text-gray-600 */
      margin-top: 16px; /* mt-4 */
    }

    /* Error message styling */
    .error-message {
      color: #dc2626; /* text-red-600 */
      font-size: 0.875rem; /* text-sm */
      margin-top: 4px; /* mt-1 */
      display: none; /* hidden */
    }

    /* Custom Modal Styling */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .modal-overlay.show {
      opacity: 1;
      visibility: visible;
    }

    .modal-content {
      background-color: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      max-width: 400px;
      width: 90%;
      position: relative;
      transform: translateY(-20px);
      transition: transform 0.3s ease;
    }

    .modal-overlay.show .modal-content {
      transform: translateY(0);
    }

    .modal-message {
      font-size: 1.125rem;
      color: #333333;
      margin-bottom: 20px;
    }

    .modal-close-button {
      background-color: #D02E2E;
      color: #ffffff;
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }

    .modal-close-button:hover {
      background-color: #000000;
    }
  </style>