fieldset {
  border: 0;
}

input[type=color],
input[type=date],
input[type=datetime-local],
input[type=datetime],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 40px;
  width: 100%;
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 25px 15px;
  margin-bottom: 0;
  font-size: 16px;
  color: var(--dark-text);
  font-family: var(--text);
}

input[type=color]:focus,
input[type=date]:focus,
input[type=datetime-local]:focus,
input[type=datetime]:focus,
input[type=email]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-bottom: 1px solid var(--primary);
  -webkit-box-shadow: 0 2px 0 0 var(--primary);
  box-shadow: 0 2px 0 0 var(--primary);
}

label span {
	visibility: hidden;
	opacity:0;
}

select{
  padding: 10px;
  background-image: url('/wp-content/uploads/2024/10/dropdown-arrow.png');
  background-size: 10px 5px;
  background-repeat: no-repeat;
  background-position: right 15px center;
  min-width: 85px;
	height: 50px; 
	line-height: 20px;
	background-color: #fff;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select option {
  padding: 10px;
  font-family: var(--text);
  font-size: 16px;
  color: var(--dark-text);
}

textarea {
  height: auto;
}

textarea::-webkit-input-placeholder,
textarea::-moz-placeholder,
textarea:-ms-input-placeholder,
textarea::-ms-input-placeholder,
textarea::placeholder {
  color: var(--dark-text);
  font-family: var(--text);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1rem;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder,
::placeholder {
  color: var(--dark-text);
  font-family: var(--text);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1rem;
}

.hs-error-msgs {
	list-style: none; 
}

.hs-error-msgs li {
	margin-bottom: 0; 
}

.hs-error-msg {
	font-size: 14px;
	color: red;
}

.submitted-message p {
	color: #2c9a3e;
	text-align:center;
	font-family: var(--head);
}
