.form-group {
  margin-bottom: 20px;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}
.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}
.form-control:focus {
  border-color: #007cba;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 124, 186, 0.3);
}
.form-control.error {
  border-color: #dc3545;
}
.form-control.success {
  border-color: #28a745;
}
textarea.form-control {
  height: 120px;
  resize: vertical;
}
.btn {
  background-color: #007cba;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}
.btn:hover:not(:disabled) {
  background-color: #005a87;
}
.btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.message {
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
  display: none;
}
.message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.field-error {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}
.security-info {
  background-color: #e9ecef;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6c757d;
}
.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 10px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
