/* General reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif !important;
}

/* Custom container max-width for the form */
.max-w-400 {
  max-width: 400px;
}
.btn-primary{
  background-color: #574dcf !important;
  border-color: #574dcf !important;
  color: #fff;
}
.btn-primary:hover {
  background-color: #4739b3 !important;
  border-color: #4739b3 !important;
}
a {
  color: #4739b3  !important;
}

/* Left Panel */
.left-panel {
  /* background: linear-gradient(135deg, #66e1ce, #6b8fd6); */
  /* background-size: cover;
  background-position: center;
  position: relative; */
   /* Random image placeholder */
}
.left-thankyou-panel{
  background: linear-gradient(135deg, #66e1ce, #6b8fd6);
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Logo Styling */
.custom-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Branding text */
.brand-text {
  color: #000;
  font-weight: 700;
  font-size: 1.75rem;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .left-panel {
    display: none;
  }
}