.font-weight {
  font-weight: 500;
}

.form-container {
  background-color: #F3F4F6; 
  border: 1px solid #D9D9D9; 
  padding: 2rem; 
  border-radius: 0.75rem; 
  box-shadow: 10px 10px 10px rgba(0,0,0,0.05);
}

.send-ticket-button {
  background-color: #6300FD;
  color: white;
  padding: 0.6rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 0.4rem;
  box-shadow: 0 4px 14px rgba(99, 0, 253, 0.3);
  transition: all 0.3s ease-in-out;
}

.send-ticket-button:hover {
  background-color: #4c00c4;
  box-shadow: 0 6px 20px rgba(99, 0, 253, 0.5);
  transform: scale(1.03);
  color: #fff;
}

.invalid-input {
  border: 1px solid red;
}

#empty-fields-disclaimer {
  color: red;
  font-weight: 500;
  text-align: center;
}

.count-disclaimer {
  display: block;
  text-align: right;
  color: #6f6f6f;
  font-size: 12px;
}