/* CSS Document */

#formbox{
	font-size: 1em;
	}

form label{
	display: none;
	}

/* ===== FIELDS ===== */
.form-group {
	margin-bottom: 18px;
	}

label {
	display: block;
	margin-bottom: 6px;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	}
	
#captchaLabel{
	display: block;
	}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: rgba(255,255,255, 1);
	font-size: 1em;
	width: 100%;
	padding: 12px 14px;
	border-radius: 8px;
	border: 1px solid #888888;
	background-color: rgba(0, 158, 227, 1);
	}
	
textarea {
	min-height: 120px;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background-color: rgba(0, 158, 227, 1);
	}
	
::placeholder {
	color: rgba(255,255,255, 1);
	opacity: 1; /* Firefox */
	}

::-ms-input-placeholder { /* Edge 12 -18 */
	color: rgba(255,255,255, 1)
	}


/* ===== FIELD ERROR (INPUTS + CHECKBOX GROUP) ===== */


.field-error {
	border: 4px solid #ff0000 !important;
	border-radius: 8px;
	padding: 8px;
	}
	



/* ===== CHECKBOX ===== */
.checkbox-group {
	margin-top: 12px;
	}

.checkbox-group label {
	display: inline;
	line-height: 1.5;
	}

/* ===== BUTTON ===== */
button{
	white-space: nowrap;
	display: block;
	margin: auto;
	width: auto;
	padding: 14px;
	border: none;
	border-radius: 10px;
	background: linear-gradient(180deg,rgba(2, 232, 98, 1) 0%, rgba(0, 168, 70, 1) 100%);
	color: #fff;
	font-size: 1em;
	font-weight: 600;
	cursor: pointer;
	}



/* ===== PRIVACY TEXT ===== */
.privacy-hint {
	margin-top: 14px;
	font-size: 1em;
	color: #4b5563;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	}

/* ===== HONEYPOT ===== */
.hp { display: none !important; }


/* ===== MESSAGE BANNER ===== */
#formMessage:empty { display: none; }

#formMessage {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	margin: 1em 0px 1em 0px;
	padding: 20px;
	border-radius: 10px;
	font-size: 1em;
	line-height: 1.35;
	box-shadow: 0 6px 18px rgba(0,0,0,0.10);
	border: 1px solid rgba(15,23,42,0.12);
	background: rgba(15,23,42,0.04);
	color: #ffffff;
	}
	
#formMessage.error h2{
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: #ffffff;
	text-align: left;
	}
	
#formMessage.error p {
	margin: 0px 0px 1em 0px; 
	font-size: 1em;
	line-height: 1.35;
	text-align: left;
	}
	
#formMessage.error ul {
	margin: 0px 0px 1em 1em; 
	font-size: 1em;
	line-height: 1.35;
	text-align: left;
	}
	
#formMessage.error p{
	color: #ffffff;
	font-size: 1em;
	text-align: left;
	}
	

#formMessage.success {
	display: block;
	background: #009900;
	color: #ffffff;
	font-weight: 700;
	}

#formMessage.error {
	display: block;
	background: #b91c1c;
	color: #ffffff;
	font-weight: 700;
	}
	

