 *, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body{
	overflow-x:hidden !important;
}
.text-blue {
  color: #012169;
  font-weight: 600 !important;
}
.text-danger {
  color: #dc3545 !important;
  font-size: 17px;
}
.card {
	background: #fff;
	border: 1px solid #d8dde6;
	border-radius: 6px;
	padding: 36px 40px 32px;
	width: 100%;
	max-width: 720px;
	margin: 20px auto 30px !important;
}
.card:hover {
  transform: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}	
/* ── Counter row ── */
.counters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.counter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.counter-group label {
  font-size: 0.88rem;
  color: #222;
  white-space: nowrap;
}

.counter-group input[type="text"] {
  width: 54px;
  height: 34px;
  border: 1px solid #bfc5ce;
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #333;
  outline: none;
  -moz-appearance: textfield;
  padding:10px;
}

.counter-group input[type="number"]::-webkit-outer-spin-button,
.counter-group input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.counter-group input[type="number"]:focus {
  border-color: #3a7bd5;
  box-shadow: 0 0 0 2px rgba(58, 123, 213, 0.18);
}
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: 80%;
  color: #dc3545;
  margin-left: 103px;
}
/* ── Form fields ── */
.field {
  display: flex;
  align-items: center;
  gap: 12px;
}
.field-block{
  margin-bottom: 14px;	
}
.field label {
  font-size: 0.9rem;
  color: #222;
  min-width: 90px;
  flex-shrink: 0;
}

.field label .req {
  color: #c0392b;
}

.field select,
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
  flex: 1;
  padding: 10px;
  border: 1px solid #bfc5ce;
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #444;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.field select {
  flex: 0 0 auto;
  width: 120px;
  background: #fff;
  cursor: pointer;
  appearance: auto;
}

.field select:focus,
.field input:focus {
  border-color: #3a7bd5;
  box-shadow: 0 0 0 2px rgba(58, 123, 213, 0.18);
}

.field input::placeholder {
  color: #aab0bb;
}

/* ── Submit button ── */
.btn-submit {
  display: block;
  width: 50%;
  max-width: 420px;
  margin: 24px auto 0;
  padding: 14px 0;
  background: #28a745;
  color: #fff;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  letter-spacing: 0.2px;
  transition: background 0.18s, transform 0.1s;
}

.btn-submit:hover {
  background: #218838;
}

.btn-submit:active {
  transform: scale(0.98);
}

/* ── Privacy note ── */
.privacy {
  text-align: center;
  font-size: 0.78rem;
  margin-top: 14px;
  color: #555;
  font-size: 14px;
}

.privacy .highlight {
  color: #28a745;
}

/* ── Responsive ── */
@media (max-width: 610px) {
	.label-right{width:150px;}
	.btn-submit {
	  width: 100%;
	}
}	
@media (max-width: 560px) {
  .card {
	padding: 26px 18px 24px;
  }
  .invalid-feedback{
	 margin-left: 0; 
  }

  h1 {
	font-size: 1.5rem;
  }

  .counters {
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
  }

  .field {
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
  }

  .field label {
	min-width: unset;
  }

  .field select,
  .field input[type="text"],
  .field input[type="email"],
  .field input[type="tel"] {
	width: 100%;
  }

  .field select {
	width: 100%;
  }
}