* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

.main-image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
body {
  margin: 0;
  background: #fff;
  color: #333;
}

.container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 2rem 4rem;
}

.form-section {
  flex: 1;
  max-width: 500px;
  padding-right: 2rem;
}

.image-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 250px;
}

.dollar-tree {
  width: 220px;
  height: 220px;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.dollar-tree span {
  font-size: 5rem;
  color: #059669;
  font-weight: bold;
}

h1 {
  font-size: 2.5rem;
  color: #111827;
  margin-bottom: 0.5rem;
}

p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

input[type="text"],
input[type="email"] {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  transition: border-color 0.2s;
}

input:focus {
  border-color: #10b981;
  outline: none;
}

.checkbox {
  font-size: 0.9rem;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

button {
  background: #10b981;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #059669;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
  }

  .form-section {
    padding-right: 0;
    max-width: 100%;
  }

  .image-section {
    margin-top: 2rem;
  }

  .row {
    flex-direction: column;
  }
}

