.signup-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  margin-top: 150px;
}

.signup-image {
  flex: 1;
  display: block;
  margin-right: 20px;
}

.signup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.signup-form {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signup-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

.signup-form label {
  display: block;
  margin-bottom: 5px;
}

.signup-form input,
.signup-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.signup-form button {
  width: 100%;
  padding: 10px;
  background-color: #93c84a52;
  border: none;
  border-radius: 50px;
  color: rgb(0, 0, 0);
  font-size: 16px;
  cursor: pointer;
  border: 2px solid #94c84a;
}

.signup-form button:hover {
  background-color: #94c84a;
}

.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper input {
  width: 100%;
  padding-right: 40px;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #555;
}

/* Google Signup Section */
.google-signup {
  margin-top: 20px;
  text-align: center;
}

.signup-form-social-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 50px;
  background-color: #93c84a52;
  border: 2px solid #94c84a;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s;
}

.signup-form-social-item i {
  margin-right: 8px;
}

.signup-form-social-item:hover {
  background-color: #94c84a;
}

.error {
  color: red;
  font-size: 14px;
  margin: 10px 0;
  padding: 10px;
  background-color: #f8d7da;
  border: 1px solid #f5c2c7;
  border-radius: 5px;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .signup-container {
    flex-direction: column;
    max-width: 100%;
    padding: 20px;
  }

  .signup-image {
    margin: 0 0 20px 0;
    height: auto;
  }

  .signup-image img {
    height: auto;
  }
}