/* contact-apply.html page styles */

/* Custom styling for Make an Enquiry button */
.apply-actions {
  margin-top: 2.5rem;
}

.apply.apply--wide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  background: #0b3d91;
  border: 2px solid #0b3d91;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(11, 61, 145, 0.15);
}

.apply.apply--wide:hover {
  background: #0a2e6d;
  border-color: #0a2e6d;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(11, 61, 145, 0.25);
  text-decoration: none;
}

.apply.apply--wide:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(11, 61, 145, 0.2);
}

@media (max-width: 768px) {
  .apply.apply--wide {
    display: block;
    width: 100%;
    padding: 1.125rem 2rem;
    text-align: center;
  }
}
