.btn-primary {
  background-color: #007bff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Accessibility: Focus States */
button:focus {
  outline: 2px dashed #ccc;
}

.btn-custom:focus {
  outline: 2px dashed #ccc;
}

.btn-primary:focus {
  outline: 2px dashed #ccc;
}

.links a:focus {
  outline: 2px dashed #ccc;
}

/* Accessibility: Focus States */
button:focus {
  outline: 2px dashed #ccc;
}

.btn-custom:focus {
  outline: 2px dashed #ccc;
}

.btn-primary:focus {
  outline: 2px dashed #ccc;
}

.links a:focus {
  outline: 2px dashed #ccc;
}

/* .btn-close {
  background-color: #fff;
  color: #fff;
} */

.btn-custom {
  background-color: #fff;
  color: #000;
  padding: 10px 20px;
  font-size: 18px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-custom:hover {
  background-color: #1a1a1a;
  color: #fff;
}

/* .btn-primary:hover {
  background-color: #ccc;
  color: #fff;
} */

.btn-submit {
  background-color: #fff;
  color: #000;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: block;
  width: 95%;
  max-width: 400px; 
  margin: 0 auto; 
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center; 
  
}

.btn-submit:hover {
  background-color: #1a1a1a;
  color: #fff;
}
