/* Contact Page Custom Stylesheet */

.contact-card-box {
  max-width: 48rem;
  margin: 3rem auto;
  padding: 2.5rem;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.contact-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 2rem;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 0.75rem;
}

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

.contact-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #111827;
  outline: none;
  background-color: #fff;
  transition: all 0.2s;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background-color: #4f46e5;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s;
  cursor: pointer;
}

.btn-contact-submit:hover:not(:disabled) {
  background-color: #4338ca;
}

.btn-contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
