/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #0d5f00;
  line-height: 1.6;
}

/* Container Layout */
.registration-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 2rem auto;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  min-height: 600px;
  gap: 20px;
}

/* Left: Image Section */
.registration-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.registration-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

/* Right: Form Section */
.registration-form {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1 {
  color: #0d5f00;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 2rem;
}

/* Form Fields */
.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #555;
}

input,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s;
}

input:focus,
select:focus {
  border-color: #0d5f00;
  outline: none;
}

/* Submit Button */
button {
  background-color: #0d5f00;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
  width: 100%;
}

button:hover {
  background-color: #0a4d00;
}

/* Price Display */
.price-display {
  margin-top: 1rem;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  color: #0d5f00;
}

/* Responsive Design */
@media (max-width: 768px) {
  .registration-container {
    grid-template-columns: 1fr;
  }

  .registration-image {
    max-height: 300px;
    padding: 0;
  }

  .registration-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
  }

  .registration-form {
    padding: 1.5rem;
  }

  h1 {
    font-size: 1.6rem;
  }
}
