#t33a-form {
  max-width: 500px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #fefefe;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  font-family: system-ui, sans-serif;
}

#t33a-form input,
#t33a-form select,
#t33a-form button {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

#t33a-form input:focus,
#t33a-form select:focus {
  border-color: #4a90e2;
  outline: none;
}

#t33a-form button {
  background: #4a90e2;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

#t33a-form button:hover {
  background: #3b7bd3;
}
/* Fix misaligned fields and ensure layout safety */
#t33a-form {
  box-sizing: border-box;
  overflow: hidden;
}

#t33a-form * {
  box-sizing: border-box;
}

#t33a-form select {
  height: 48px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  background: white url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D'14'%20height%3D'10'%20viewBox%3D'0%200%2014%2010'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M1%201l6%206%206-6'%20stroke%3D'%234A90E2'%20stroke-width%3D'2'%20fill%3D'none'%20fill-rule%3D'evenodd'/%3E%3C/svg%3E") no-repeat right 1rem center;
  background-size: 1rem;
}

#t33a-form input,
#t33a-form select,
#t33a-form button {
  display: block;
  max-width: 100%;
}