/**
 * Email Notify Section
 * Two variants: .style-split and .style-centered
 */

.email-notify-section {
	background: var(--blue);
}
.email-notify-section * {
	color: var(--white);
}
.email-notify-section .field-wrap p {
    display: flex;
    column-gap: 15px;
    row-gap: 15px;
    align-items: start;
}
.email-notify-section .section-header {
    text-align: left;
}
.email-notify-section .section-header h6{
	color: var(--gray);
}
.email-notify-section .wpcf7-form p {
	margin: 0;
}
.email-notify-section .wpcf7-form-control-wrap {
	display: block;
}
.email-notify-section input[type="email"].wpcf7-form-control {
    background: transparent;
    border: 3px solid var(--white);
    border-radius: 15px;
    height: 65px;
    padding: 0 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    font-family: 'Calibre', sans-serif;
    width: 100%;
}
.email-notify-section input[type="email"].wpcf7-form-control::-webkit-input-placeholder{color: var(--white);opacity: 1}
.email-notify-section input[type="email"].wpcf7-form-control::-moz-placeholder{color: var(--white);opacity: 1}
.email-notify-section input[type="email"].wpcf7-form-control:-ms-input-placeholder{color: var(--white);opacity: 1}
.email-notify-section input[type="email"].wpcf7-form-control::-ms-input-placeholder{color: var(--white);opacity: 1}
.email-notify-section input[type="email"].wpcf7-form-control::placeholder{color: var(--white);opacity: 1}
/* The submit tag already carries class:btn — override the global pink .btn for this section only */
.email-notify-section .field-wrap {
	position: relative;
}
.email-notify-section .field-wrap .btn {
    background: var(--white);
    color: var(--black);
    border: none;
    min-width: 205px;
    padding: 22px 24px 23px;
    margin: 0;
    cursor: pointer;
    border-radius: 15px;
}
.email-notify-section .field-wrap .btn:hover {
	background: var(--black);
	color: var(--white);
}
.email-notify-section .wpcf7-spinner {
    position: absolute;
    left: 0;
    bottom: -30px;
    margin: 0;
}
.email-notify-section .wpcf7-not-valid-tip {
    color: red;
    font-size: 14px;
    margin-top: 6px;
    width: 100%;
    background-color: var(--white);
    padding: 3px 20px;
    border-radius: 5px;
}
.email-notify-section .wpcf7-response-output {
	width: 100%;
	margin: 15px 0 0 !important;
	font-size: 16px;
	border-radius: 10px;
}
.email-notify-section .screen-reader-response {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Split layout — heading/desc left, form right, single row */
.email-notify-section.style-split .text-block .desc{
	max-width: 560px;
}
.email-notify-section.style-split .text-block h2 {
	margin-bottom: 15px;
}
.email-notify-section.style-split .form-block {
	width: 49%;
}
.email-notify-section.style-split .text-block{
	width: 51%;
	margin-top: 5px;
}

/* Centered layout — subtitle/heading/desc centered, form centered below */
.email-notify-section.style-centered .content-wrap {
	text-align: center;
	flex-direction: column;
	row-gap: 35px;
}
.email-notify-section.style-centered .email-notify-section .section-header {
    text-align: center;
}
.email-notify-section.style-centered .section-header{
	margin-bottom: 20px;
	text-align: center;
}
.email-notify-section.style-centered .text-block {
	max-width: 676px;
	margin: 0 auto;
}
.email-notify-section.style-centered .text-block h2 {
	margin-bottom: 15px;
}
.email-notify-section.style-centered .form-block {
	display: flex;
	justify-content: center;
}
.email-notify-section.style-centered input[type="email"].wpcf7-form-control {
	width: 454px;
}
.email-notify-section.style-split.has-image{
	background-color: var(--gray);
}
@media only screen and (min-width: 1200px) {
	.email-notify-section.section-padding {
		padding-top: 70px;
		padding-bottom: 70px;
	}
}
@media only screen and (max-width: 1199px) {
	.email-notify-section.style-split .content-wrap {
		flex-direction: column;
		align-items: flex-start;
	}
	.email-notify-section.style-split .form-block {
		width: 100%;
	}
	.email-notify-section.style-split input[type="email"].wpcf7-form-control {
		width: 100%;
	}
	.email-notify-section.style-split .field-wrap {
		width: 100%;
	}
	.email-notify-section.style-split .text-block {
		width: 100%;
		margin-top: 0;
	}
	.email-notify-section.style-split .text-block .desc {
		max-width: 100%;
	}
}
@media only screen and (max-width: 767px) {
	.email-notify-section .field-wrap p{
		flex-direction: column;
		row-gap: 15px;
		align-items: stretch;
	}
	.email-notify-section input[type="email"].wpcf7-form-control {
		width: 100%;
		height: 56px;
	}
    .email-notify-section .field-wrap .btn {
        width: 100%;
        min-width: 0;
        padding: 18px 24px 19px;
    }
	.email-notify-section.style-centered .form-block {
		max-width: 400px;
		margin: 0 auto;
	}
	.email-notify-section.style-centered input[type="email"].wpcf7-form-control{
		width: 100%;
	}
}
