/*post*/
/*
body {background:hotpink !important;}
*/
.contact-form,
.contact-form * {
  box-sizing: border-box;
}

.contact-form {
  max-width: 520px;
  margin: 40px auto;
  padding: 28px;
	background: #EEF1FF;
  border-radius: 14px;
	
	box-shadow: 
		0 4px 6px rgba(0, 0, 0, 0.08), 
		0 12px 24px rgba(0, 0, 0, 0.12);

}

/* inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #D6DAF2;
  border-radius: 10px;
  margin-bottom: 16px;
  font-family: inherit;
  background: #ffffff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8A8FA6;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #377C9D;
  box-shadow: 0 0 0 3px rgba(55, 124, 157, 0.18);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  background-color: #377C9D;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(55, 124, 157, 0.35);
  transition: background-color .2s ease, transform .15s ease, box-shadow .2s ease;
}

/* hover */
.contact-form button:hover {
  background-color: #2F6F8C;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(55, 124, 157, 0.45);
}

/* active */
.contact-form button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(55, 124, 157, 0.25);
}

/* focus (доступность) */
.contact-form button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(55, 124, 157, 0.25),
    0 6px 14px rgba(55, 124, 157, 0.35);
}


/* status message */
.contact-status {
  max-width: 520px;
  margin: 20px auto 0;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
  background: #F4F6FF;
}

/* notices */
.contact-notice {
  max-width: 520px;
  margin: 0 auto 20px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
}

.contact-notice.success {
  background: #E9F6EF;
  color: #1E6B45;
}

.contact-notice.error {
  background: #FDEEEE;
  color: #A62525;
}

/* honeypot */
.contact-form .hp {
  display: none;
}

