* {
	box-sizing: border-box;
}

body {
	padding: 1rem;
	color: #212d31;
	font-family: 'Roboto', sans-serif;
}

.contain {
	background-color: #eee;
	max-width: 1170px;
	margin-left: auto;
	margin-right: auto;
	padding: 1em;
}

div.form {
	background-color: #eee;
}

.contact-wrapper {
	margin: auto 0;
}

.submit-btn {
	float: left;
}

.reset-btn {
	float: right;
}

.form-headline:after {
	content: "";
	display: block;
	width: 10%;
	padding-top: 10px;
	border-bottom: 3px solid #ec1c24;
}

.highlight-text {
	color: #ec1c24;
}

.hightlight-contact-info {
	font-weight: 700;
	font-size: 22px;
	line-height: 1.5;
}

.highlight-text-grey {
	font-weight: 500;
}

.email-info {
	margin-top: 20px;
}

::-webkit-input-placeholder { /* Chrome */
	font-family: 'Roboto', sans-serif;
}

.required-input {
	color: black;
}

@media ( min-width : 600px) {
	.contain {
		padding: 0;
	}
}

h3, ul {
	margin: 0;
}

h3 {
	margin-bottom: 1rem;
}

.form-input:focus, textarea:focus {
	outline: 1.5px solid #ec1c24;
}

.form-input, textarea {
	width: 100%;
	border: 1px solid #bdbdbd;
	border-radius: 5px;
}

.wrapper>* {
	padding: 1em;
}

@media ( min-width : 700px) {
	.wrapper {
		display: grid;
		grid-template-columns: 2fr 1fr;
	}
	.wrapper>* {
		padding: 2em 2em;
	}
}

ul {
	list-style: none;
	padding: 0;
}

.contacts {
	color: #212d31;
}

.form {
	background: #fff;
}

form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
}

form label {
	display: block;
}

form p {
	margin: 0;
}

.full-width {
	grid-column: 1/3;
}

button, .submit-btn, .form-input, textarea {
	padding: 1em;
}

button, .submit-btn {
	background: transparent;
	border: 1px solid #ec1c24;
	color: #ec1c24;
	border-radius: 15px;
	padding: 5px 20px;
	text-transform: uppercase;
}

button:hover, .submit-btn:hover, button:focus, .submit-btn:focus {
	background: #ec1c24;
	outline: 0;
	color: #eee;
}

.error {
	color: #ec1c24;
}
/* Style the modal */
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
	padding-top: 60px;
}

/* Modal Content */
.modal-content {
	background-color: #fefefe;
	margin: 5% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
}

/* The Close Button */
.close, .priorityCountryModalclose {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}
/* ✅ Force small button size (override global padding) */
#submitBtn, #resetBtn {
	padding: 4px 14px !important;
	height: 32px !important;
	font-size: 13px !important;
	line-height: 1.2 !important;
	min-width: 90px !important;
	border-radius: 4px !important;
}

/* Disabled submit state */
#submitBtn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Consent container */
.consent-box {
	border: 1px solid #bdbdbd;
	border-radius: 5px;
	padding: 10px 12px;
	background: #f9f9f9;
}

/* Consent label layout */
.consent-label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	cursor: pointer;
	font-size: 11px;
	line-height: 1.4;
}

/* ✅ Correct checkbox size */
.consent-label input[type="checkbox"] {
	width: 14px;
	height: 14px;
	margin-top: 0px;
	accent-color: #ec1c24;
	cursor: pointer;
	flex-shrink: 0;
}

/* Required asterisk */
.required {
	color: #ec1c24;
}

/* Consent helper message */
.consent-msg {
	font-size: 12px;
	color: #999;
	margin-left: 24px;
	margin-top: 4px;
}

.cursor-pointer{
    cursor:pointer;
}

.captcha-image {
    border:1px solid #ccc;
    border-radius:4px;
}

.submit-enabled{
    opacity:1;
    cursor:pointer;
}

.submit-disabled{
    opacity:.5;
    cursor:not-allowed;
}

.consent-msg-enabled{
    color:#1D9E75;
}

.consent-msg-disabled{
    color:#999;
}
.mr-left {
	margin-left: 20%;
}