.custom-form {
  max-width: 500px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

.input-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.custom-select {
  position: relative;
  width: 150px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  cursor: pointer;
}

.selected-option {
  display: flex;
  align-items: center;
  padding: 10px;
}

.selected-option .icon {
  margin-right: 8px;
  color: #888;
}

.options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  display: none;
  z-index: 10;
}

.option {
  display: flex;
  align-items: center;
  padding: 10px;
}

.option:hover {
  background-color: #f1f1f1;
}

.option .icon {
  margin-right: 8px;
  color: #888;
}

.contact-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-left: none;
  border-radius: 0 5px 5px 0;
  font-size: 14px;
}

.submit-button {
  padding: 12px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}

.submit-button:hover {
  background-color: #0056b3;
}