* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #14610666;
  background-image: url("Solar-atta-chakki1.png ");
}

.FormAndPic {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  background-color: transparent;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  flex-direction: row;
}

.image-section h1 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  text-align: center;
  color: #079321;
  margin-bottom: 20px;
  font-size: 2em;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
  width: calc(100% - 20px); /* Adjust for padding */
  padding: 12px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
}

button[type="submit"] {
  background-color: #28a745; /* Green for submit */
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
  margin-top: 20px;
  width: 100%;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #218838;
}

#formStatus {
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
}

/* --- Responsive Design --- */

@media (max-width: 1030px) {
     
  .FormAndPic {
    height: 160vh;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .FormAndPic {
    flex-direction: column; /* Stack vertically on smaller screens */
    width: 100%;
  }
  /* 
  .image-section {
    padding: 30px 20px;
  }

  .image-section h1 {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .form-section {
    padding: 30px 25px;
  }

  .form-section h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .capacity-buttons {
    justify-content: center; 
  }

  .capacity-buttons label {
    padding: 8px 12px;
    font-size: 0.9em;
  }

  button[type="submit"] {
    padding: 12px 20px;
    font-size: 1em;
  } */
}

/* @media (max-width: 480px) {
  body {
    padding: 15px;
  }

  .solar-chakki-container {
    border-radius: 5px;
  }

  .image-section h1 {
    font-size: 1.8em;
  }

  .form-section {
    padding: 25px 15px;
  }

  .form-section h2 {
    font-size: 1.6em;
  }

  .form-group input[type="text"],
  .form-group input[type="tel"] {
    padding: 10px;
  }

  .capacity-buttons label {
    padding: 6px 10px;
    font-size: 0.8em;
  }
} */
