.newsletter-form--container,
.newsletter-form--container *,
.newsletter-form--container *::before,
.newsletter-form--container *::after {
	box-sizing: border-box;
}

.newsletter-form--container {
	width: 100%;
}

.newsletter-form--container .cr_form {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: IBMPlexSans, Arial, sans-serif;
}

.newsletter-form--container .cr_body,
.newsletter-form--container .cr_page,
.newsletter-form--container .formbox {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	font-family: IBMPlexSans, Arial, sans-serif !important;
	color: var(--text);
}


/* GRID */

.newsletter-form--container .editable_content {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	column-gap: 20px !important;
	row-gap: 25px !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}


/* Titel volle Breite */

.newsletter-form--container .cr-field-title {
	grid-column: 1 / -1 !important;
}


/* Vorname 50% */

.newsletter-form--container .cr-field-firstname {
	grid-column: 1 !important;
}


/* Nachname 50% */

.newsletter-form--container .cr-field-lastname {
	grid-column: 2 !important;
}


/* E-Mail volle Breite */

.newsletter-form--container .cr-field-email {
	grid-column: 1 / -1 !important;
}


/* Button volle Zeile */

.newsletter-form--container .cr-field-submit {
	grid-column: 1 / -1 !important;
}


/* FORM ITEMS */

.newsletter-form--container .cr_ipe_item {
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.newsletter-form--container .cr_form-inputgroup {
	display: flex !important;
	flex-direction: column !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}


/* LABELS */

.newsletter-form--container .cr_ipe_item label {
	display: block !important;
	float: none !important;
	clear: both !important;
	width: 100% !important;
	margin: 0 0 8px 0 !important;
	padding: 0 !important;
	font-family: IBMPlexSans, Arial, sans-serif !important;
	font-size: 14px !important;
	line-height: 1.6 !important;
	font-weight: 400 !important;
	text-align: left !important;
	color: var(--text) !important;
}


/* INPUTS */

.newsletter-form--container .cr_ipe_item input[type="text"],
.newsletter-form--container .cr_ipe_item input[type="email"] {
	display: block !important;
	width: 100% !important;
	min-width: 0 !important;
	height: auto !important;
	margin: 0 !important;
	padding: 20px !important;
	border: 0 !important;
	border-radius: 0 !important;
	outline: none !important;
	background: var(--light-grey) !important;
	box-shadow: none !important;
	font-family: IBMPlexSans, Arial, sans-serif !important;
	font-size: 18px !important;
	line-height: 1.4 !important;
	color: var(--text) !important;
	appearance: none !important;
	-webkit-appearance: none !important;
}

.newsletter-form--container .cr_ipe_item input:focus,
.newsletter-form--container .cr_ipe_item input:focus-visible {
	outline: none !important;
	background-color: var(--lighter-pink) !important;
}

.newsletter-form--container .cr_ipe_item input::placeholder {
	color: var(--text) !important;
	opacity: 1 !important;
}


/* BUTTON */

.newsletter-form--container .submit_container {
	display: block !important;
	width: 100% !important;
	margin: 5px 0 0 0 !important;
	padding: 0 !important;
	text-align: left !important;
}

.newsletter-form--container .submit_container .cr_button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;

	width: auto !important;
	min-width: 225px !important;
	height: auto !important;

	margin: 0 !important;
	padding: 15px 55px 15px 25px !important;

	border: 0 !important;
	border-radius: 0 !important;

	background-color: var(--pink) !important;
	background-image: url("/wp-content/themes/univercity/assets/images/submit-arrow.svg") !important;
	background-repeat: no-repeat !important;
	background-size: 25px auto !important;
	background-position: right 20px center !important;

	box-shadow: none !important;

	color: var(--white) !important;

	font-family: IBMPlexSans, Arial, sans-serif !important;
	font-size: 25px !important;
	line-height: 1.2 !important;
	font-weight: 700 !important;

	text-align: center !important;
	text-decoration: none !important;

	white-space: nowrap !important;
	cursor: pointer !important;

	appearance: none !important;
	-webkit-appearance: none !important;

	opacity: 1 !important;

	transition: background-color 0.3s ease !important;
}

.newsletter-form--container .submit_container .cr_button:hover {
	background-color: var(--dark-pink) !important;
	opacity: 1 !important;
}


/* MOBILE */

@media (max-width: 767px) {

	.newsletter-form--container .editable_content {
		grid-template-columns: 1fr !important;
	}

	.newsletter-form--container .cr-field-title,
	.newsletter-form--container .cr-field-firstname,
	.newsletter-form--container .cr-field-lastname,
	.newsletter-form--container .cr-field-email,
	.newsletter-form--container .cr-field-submit {
		grid-column: 1 !important;
	}

	.newsletter-form--container .submit_container .cr_button {
		font-size: 18px !important;
	}
}