html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.container-fluid {
  padding: 0 !important;
  margin: 0 !important;
}

.main-layout {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* Left Section */
.left-section {
  flex: 0 0 65%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Right Section */
.right-section {
  flex: 0 0 35%;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background-color: #fff;
}

.form-container {
  width: 100%;
  max-width: 400px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .main-layout {
    flex-direction: column;
  }

  .left-section {
    display: none;
  }

  .right-section {
    flex: none;
    height: 100vh;
  }
}
