.form-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 1.5rem;
}

.form-columns .form-group {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .form-columns .form-group {
    flex: 1 1 100%;
  }
}

input.irregular-borders {
  border: 2px solid lightgray;
  border-radius: 20px 50px 30px 10px;
  background-color: #f0f0f0;
  padding: 10px;
  font-size: 1rem;
  color: #333;
}

.custom-submit-button {
  background-color: #ca4e64;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-submit-button:hover {
  background-color: #b53f56;
}
