<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cart-order-form-wrapper {
  background-color: #DCDCDC;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  margin: 30px auto;
  font-family: Arial, sans-serif;
}

.cart-order-title {
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 20px;
}

#custom-order-cart-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

#custom-order-cart-form input,
#custom-order-cart-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: none;
  font-size: 16px;
  border-radius: 4px;
}

#custom-order-cart-form button[type="submit"] {
  background-color: #ffdb00;
  color: black;
  border: none;
  padding: 16px;
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}

#custom-order-cart-form button:hover {
  opacity: 0.95;
}

#cocf_name,
#cocf_phone {
  height: 60px; /* Gáº¥p Ä‘Ã´i so vá»›i máº·c Ä‘á»‹nh khoáº£ng 40px */
  box-sizing: border-box;
}

#custom-order-cart-form button[type="submit"] {
  background-color: #ffdb00;
  color: black;
  border: none;
  padding: 16px;
  margin-top: 10px; /* tÄƒng thÃªm 10px */
  cursor: pointer;
  border-radius: 4px;
  animation: pulse 1.5s ease-in-out infinite;
  transition: all 0.3s ease;
}

#custom-order-cart-form button[type="submit"]:hover {
  background-color: #ffe733;
  transform: scale(1.02);
  box-shadow: 0 0 10px rgba(255, 219, 0, 0.5);
}

#custom-order-cart-form button[type="submit"]:active {
  transform: scale(0.96);
  box-shadow: none;
  opacity: 0.85;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

</pre></body></html>