.card {
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.card-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 15px 15px 0 0 !important;
  border: none;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
}

.captcha-container {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 2px solid #dee2e6;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.captcha-question {
  background: white;
  border: 2px dashed #007bff;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  text-align: center;
  font-size: 1.2rem;
  color: #495057;
  position: relative;
}

.captcha-question strong {
  color: #007bff;
  font-size: 1.3rem;
}

.refresh-captcha {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
}

.refresh-captcha:hover {
  background-color: #007bff;
  color: white;
}

.form-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.form-text i {
  margin-right: 0.25rem;
  color: #6c757d;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.honeypot-field input,
.honeypot-input {
  display: none !important;
}
