/* General Reset */
body {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  background-color: #f9f9f9;
}

/* Main Container */
.container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 500px;
  margin: auto;
}

/* Row Styling */
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px; /* Added gap for better spacing */
}

/* Column Styling */
.col-25,
.col-50 {
  flex: 1;
  margin: 10px 0;
}

/* Form Heading */
h3 {
  font-size: 1.8rem;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

/* Label Styling */
label {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 8px;
  display: block;
  font-weight: 500; /* Added for consistency */
}

/* Input Fields */
input[type="text"],
input[type="email"],
input[type="hidden"],
select {
  width: 100%;
  padding: 10px;
  margin: 8px 0 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 1rem;
}

/* Input Focus State */
input[type="text"]:focus,
input[type="email"]:focus,
select:focus {
  border-color: #0e9e4f;
  outline: none;
  box-shadow: 0 0 5px rgba(14, 158, 79, 0.5);
}

/* Submit Button */
input[type="submit"] {
  width: 100%;
  background-color: #0e9e4f;
  color: white;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Submit Button Hover */
input[type="submit"]:hover {
  background-color: #097c3c;
}

/* Custom Button Styling */
.colorb {
  background-color: #ffa25b !important;
  color: white !important;
  border: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.colorb:hover {
  background-color: #ffffff !important;
  color: #f93302 !important;
}

/* Icons Styling */
.fa {
  margin-right: 8px;
  color: #0e9e4f;
}

/* Form Design */
.design-form {
  color: #f93302 !important;
}

.design-form label {
  font-weight: 500;
  color: #000000;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  h3 {
    font-size: 1.5rem;
  }

  input[type="submit"] {
    font-size: 0.9rem;
    padding: 10px;
  }

  .row {
    flex-direction: column; /* Stack columns vertically on mobile */
  }
}
