/* Form-specific styles only - integrates with existing structure */
.form-container {
  width: 80%;
  margin-top: 30px;
}

.form-row {
  display: flex;
  gap: 60px;
  margin-bottom: 30px;
}

.form-group {
  flex: 1;
}

.form-group.full-width {
  flex: none;
  width: 100%;
}

label {
  display: block;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #ffffff;
}

input,
textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid transparent;
  border-radius: 4px;
  background-color: #f5f5f5;
  color: #333;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #007bff;
}

.highlight {
  border-color: #007bff;
}

textarea {
  height: 120px;
  resize: vertical;
  font-family: inherit;
}

.loading-dots {
  text-align: center;
  margin: 20px 0;
  font-size: 24px;
  color: #666;
}

.submit-btn {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.submit-btn:hover {
  background-color: white;
  color: #0a0a0a;
}

.submit-btn:active {
  transform: translateY(1px);
}

.error {
  border-color: #dc3545;
}

.error-message {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.error-message.show {
  display: block;
}

@media (max-width: 1024px) {
  .form-container {
    width: 80%;
  }
}
/* Mobile responsiveness - works with existing breakpoints */
@media (max-width: 767px) {
  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .form-container {
    margin-top: 20px;
  }
}
