
/* Pricing Goods Spinner Styles */
.pricing-utv-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2em auto;
  gap: 1em;
}

.pricing-utv-spinner img {
  width: 80px;
  height: 80px;
  animation: spin-tire 1s linear infinite;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.4));
}

@keyframes spin-tire {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Custom Login Page */
.login-username label,
.login-password label {
  display: inline-block;
  min-width: 200px;
  margin-bottom: 0.5em;
  font-weight: 500;
  vertical-align: middle;
}

.login-username input,
.login-password input {
  width: 100%;
  max-width: 300px;
  padding: 6px 10px;
  box-sizing: border-box;
}



