/* Loader Styles - Frame Animation Based on Figma Design */

.gg-form-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 97px; /* Fixed height: 57px loader + 20px top + 20px bottom */
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.gg-form-loader.show {
  opacity: 1;
  visibility: visible;
}

.gg-loader-frame {
  width: 55px;
  height: 57px;
  display: block;
  object-fit: contain;
}
