* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #e9f3ec;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  min-height: 100vh;
}

.form-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form h1 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: #2d2d2d;
}

.row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  flex: 1;
}

.input-group label {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 6px;
}

.input-group span {
  color: #2a7c63;
}

input[type="text"],
input[type="email"],
textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s;
}

input:focus,
textarea:focus {
  border-color: #2a7c63;
}
.input-error {
  border-color: red;
}

textarea {
  resize: vertical;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.radio-option {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  gap: 10px;
  flex: 1;
}

.radio-option input {
  accent-color: #2a7c63;
}

.radio-option:hover {
  border-color: #2a7c63;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #333;
}

.checkbox-group span {
  color: #2a7c63;
}

button {
  width: 100%;
  padding: 14px;
  background-color: #0b7e60;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.error{
  display: block;
  color: red;
}

button:hover {
  background-color: #095f47;
}
.success{
  background-color: #083024;
  padding: 20px;
  color: white;
  border-radius:10px;
  position: absolute;
  top: 6vh;
}
.simg{
  display: flex;
  gap: 10px;
  margin-bottom: 10px;

}







@media (max-width:600px) {
  .radio-group {
  display: flex;
  flex-direction: column;
}
}