/* Formetra Portal Custom Branding */

/* Hide ToolJet logo on login page and replace with Formetra */
.tooljet-header[data-cy="page-logo"] svg {
  display: none !important;
}

.tooljet-header[data-cy="page-logo"]::before {
  content: '';
  display: inline-block;
  width: 120px;
  height: 24px;
  background-image: url('/assets/images/Logomark.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

/* Hide the right-side illustration panel on login/onboarding pages */
.rightside-wrapper .general-feature-image,
.rightside-wrapper .content-wrapper,
.rightside-wrapper .image-wrapper {
  display: none !important;
}

/* Override Bootstrap justify-content-end and center the branding */
.col-md-7.rightside-wrapper.d-flex.justify-content-end {
  background: linear-gradient(135deg, #f0faf1 0%, #e8f4fd 50%, #f5f5f5 100%) !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.col-md-7.rightside-wrapper::before {
  content: 'Formetra';
  font-family: Inter, system-ui, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #3DB54A;
  letter-spacing: -1px;
}

.col-md-7.rightside-wrapper::after {
  content: 'Ihr Dokumentenportal';
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #888;
  margin-top: 8px;
}

/* Change green loader dot color to Formetra green */
.load div {
  background-color: #3DB54A !important;
}
