* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.corporatesection4-container-1 {
  background-color: #ffffff !important;
  padding: 40px 0;
}

.corporatesection4-container {
  max-width: 900px;
  margin: auto;
  background-color: #e1bb52;
  padding: 40px 50px;
  text-align: center;
  border-radius: 20px; /* ✅ rounded form box */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.corporatesection4-title {
  color: #336b52;
  font-size: 36px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.corporatesection4-subtitle {
  color: #2f2f2f;
  font-size: 18px;
  margin-bottom: 40px;
}

.corporatesection4-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.corporatesection4-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.corporatesection4-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.corporatesection4-group label {
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

.corporatesection4-group input,
.corporatesection4-group select {
  padding: 9px 15px;
  border: 1px solid #ccc;
  border-radius: 10px; /* ✅ smooth rounded inputs */
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
  background-color: #fff;
}

.corporatesection4-group input:focus,
.corporatesection4-group select:focus {
  border-color: #336b52;
  outline: none;
  box-shadow: 0 0 5px rgba(51, 107, 82, 0.3);
}

.corporatesection4-btn {
  background-color: #336b52;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 10px; /* ✅ rounded button */
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.corporatesection4-btn:hover {
  background-color: #285c43;
  transform: translateY(-2px);
}

.corporatesection4-success {
  color: green;
  margin-bottom: 20px;
  font-weight: 600;
}

.corporatesection4-error {
  color: red;
  margin-bottom: 20px;
  font-weight: 600;
}

/* ✅ Responsive — still two columns even on mobile */
@media (max-width: 768px) {
  .corporatesection4-container {
    padding: 25px 20px;
    margin: 0px 40px;
  }

  .corporatesection4-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .corporatesection4-group input,
  .corporatesection4-group select {
    font-size: 15px;
  }

  .corporatesection4-btn {
    font-size: 16px;
    padding: 12px;
  }
}
@media (max-width: 668px) {
  .corporatesection4-container-1 {
  background-color: #ffffff !important;
  padding: 20px 0;
}
  .corporatesection4-container {
    padding: 15px 20px;
    margin: 0px 20px;
  }
  .corporatesection4-title {
  font-size: 29px;
}
.corporatesection4-subtitle {
  font-size: 14px;
  margin-bottom: 20px;

}

.corporatesection4-group label {
font-size: 13px;
}
.corporatesection4-group input,
.corporatesection4-group select {
  padding: 5px 15px;
  font-size: 12px;
}
.corporatesection4-btn {
  background-color: #336b52;
  color: white;
  padding: 8px 30px;
  border: none;
  border-radius: 10px; /* ✅ rounded button */
  font-size: 15px;
}
}
@media (max-width: 408px) {
 

.corporatesection4-group label {
font-size: 11px;
}

}
.corporatesection4-btn[disabled] {
  cursor: not-allowed;
  background-color: #ccc;
}
