/* stylesheet_5.css - Buttons and Call-to-Action Styles */
.btn-reg {
  background-color: var(--brand-reg);
  color: #06102B;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.btn-reg:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px rgba(100, 255, 53, 0.4);
}

.btn-login {
  border: 1px solid rgba(205, 207, 213, 0.3);
  color: var(--brand-text-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
}