.edhrs-verification-form {
  max-width: 400px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.edhrs-verification-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.edhrs-verification-form input[type="email"] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.edhrs-verification-form button {
  width: 100%;
  padding: 0.75rem;
  background: var(--edhrs-primary-color, #2271b1);
  color: var(--edhrs-button-text-color, #fff);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.edhrs-verification-form button:hover {
  background: var(--edhrs-accent-color, #135e96);
}

#edhrs-message {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

#edhrs-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#edhrs-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}