* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f6f6f6;
  color: #333;
}
.logo-placeholder {
      width: 80px;
      height: 80px;
      background: #a06b4f;
      border-radius: 50%;
      margin-bottom: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: 700;
      font-size: 1.1rem;
      color: #fff;
      box-shadow: 0 3px 8px rgba(160, 107, 79, 0.4);
      flex-shrink: 0;
    }

.container {
  display: flex;
  min-height: 100vh;
  flex-wrap: wrap;
}

 .right-panel {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-panel {
  flex: 1;
  min-width: 300px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff8f0;
}

.left-panel img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


.right-panel {
  background-color: #ffffff;
}

.signup-form {
  max-width: 400px;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
}

.signup-form h2 {
  margin-bottom: 20px;
  font-size: 1.5em;
  color: #2c3e50;
}

.signup-form input {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

.signup-form button {
  padding: 12px;
  background-color: #c77852;
  color: white;
  border: none;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
}

.signup-form button:hover {
  background-color: #c77852;
}

/* Responsive */
@media (max-width: 600px) {
  .signup-form input {
    padding: 8px;
    margin-bottom: 10px;
    font-size: 0.9em;
  }
}
@media (max-width: 768px) {
	.signup-form h2{
		font-size:1.2em;
	}
  .container {
    flex-direction: column;
  }

  .left-panel, .right-panel {
    padding: 20px;
  }

  .signup-form {
    width: 100%;
  }
   .logo-placeholder {
        width: 70px;
        height: 70px;
        font-size: 1rem;
      }
}
.bottom-section {
      background-color: #f8fafc;
      color: #1f2937;
      padding: 1.5rem;
      z-index: 0;
    }

   .row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  <!-- flex-wrap: wrap; -->
}

.column {
  flex: 1 1 40%;
}

    .section-title {
      font-size: 1rem;
      font-weight: 600;
      color: #111827;
      margin-bottom: 1rem;
    }

    .features {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .feature-item {
      display: flex;
      align-items: center;
      font-size: 0.75rem;
      gap: 0.75rem;
      white-space: nowrap;
    }

    .icon {
      font-size: 1rem;
      color: #2563eb;
    }

    .end-section {
      background-color: #083659;
      padding: 0.5rem;
    }

    .offer-text {
      font-weight: 600;
      color: #fff;
      font-size: 1.1rem;
      text-align: center;
    }
