@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
	--sendy-font: "Manrope", "Questrial", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--sendy-bg: #f8fdff;
	--sendy-surface: #ffffff;
	--sendy-ink: #142033;
	--sendy-muted: #66758c;
	--sendy-border: #e1eafd;
	--sendy-border-strong: #cad8f2;
	--sendy-soft: #f5f8ff;
	--sendy-focus: rgba(15, 23, 42, 0.12);
	--sendy-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

*{
	box-sizing: border-box;
}

html{
	min-height: 100%;
	background: #f8fdff;
}

body{
	min-height: 100vh;
	margin: 0;
	padding: 20px 18px;
	background: radial-gradient(circle at top left, rgba(124, 194, 255, 0.08), transparent 28%), linear-gradient(180deg, #f8fdff 0%, #fdfdfd 100%);
	color: var(--sendy-ink);
	font-family: var(--sendy-font);
	font-size: 15px;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea{
	font-family: var(--sendy-font);
}

.separator{
	display: none;
}

#wrapper{
	width: min(100%, 440px);
	margin: 18px auto 0;
	padding: 30px;
	background: var(--sendy-surface);
	border: 1px solid var(--sendy-border);
	border-radius: 24px;
	box-shadow: var(--sendy-shadow);
}

#wrapper h2{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0 0 24px;
	padding: 0;
	color: var(--sendy-ink);
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	letter-spacing: 0;
}

#wrapper h2 img{
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	margin: 0;
	border-radius: 8px;
	object-fit: cover;
}

#wrapper p{
	margin: 0;
}

form,
p{
	float: none;
	width: 100%;
	text-align: left;
	font-size: 15px;
	line-height: 1.5;
}

form{
	position: static;
	left: auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0;
}

#subscribe-form{
	margin-top: 20px;
}

form div{
	float: none;
	width: 100%;
	margin: 0;
}

label{
	display: block;
	float: none;
	width: auto;
	margin: 0 0 7px;
	padding: 0;
	color: #304155;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	text-align: left;
	letter-spacing: 0.01em;
}

form div input:not([type="checkbox"]),
.uneditable{
	display: block;
	float: none;
	width: 100%;
	min-height: 46px;
	height: auto;
	padding: 10px 13px;
	background: #ffffff;
	border: 1px solid var(--sendy-border);
	border-radius: 14px;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.02);
	color: var(--sendy-ink);
	font-size: 14px;
	line-height: 1.4;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

form div input:not([type="checkbox"]):focus{
	border-color: var(--sendy-border-strong);
	box-shadow: 0 0 0 4px var(--sendy-focus);
	outline: none;
}

.uneditable{
	background: #fafbfe;
	color: var(--sendy-muted);
	cursor: pointer;
}

a{
	color: #000000;
	transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

a:hover{
	color: #142033;
	text-decoration: none;
}

#submit{
	display: flex;
	align-items: center;
	justify-content: center;
	clear: both;
	float: none;
	width: 100%;
	min-height: 48px;
	margin: 4px 0 0;
	padding: 12px 16px;
	background: #000000;
	border: 1px solid #000000;
	border-radius: 20px;
	box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
	color: #ffffff;
	cursor: pointer;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
	text-align: center;
	text-decoration: none;
	text-shadow: none;
}

#submit:hover,
#submit:focus{
	background: #1f2937;
	border-color: #1f2937;
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
	color: #ffffff;
	outline: none;
	transform: translateY(-1px);
}

#submit:active{
	background: #111827;
	border-color: #111827;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.18);
	transform: translateY(0);
}

#hp{
	display: none;
}

#gdpr-consent{
	float: none;
	width: 100%;
	padding: 16px;
	background: var(--sendy-soft);
	border: 1px solid var(--sendy-border);
	border-radius: 16px;
	color: #304155;
	font-size: 13px;
	line-height: 1.55;
	text-align: left !important;
}

#gdpr-consent input{
	float: left;
	width: 18px;
	height: 18px;
	margin: 2px 10px 0 0;
	padding: 0;
	border: 1px solid var(--sendy-border-strong);
	border-radius: 4px;
	background: #ffffff;
	box-shadow: none;
	accent-color: #000000;
	cursor: pointer;
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
	appearance: auto;
}

#gdpr-consent span{
	display: block;
	overflow: hidden;
}

#gdpr-consent br{
	display: block;
	content: "";
	margin-top: 10px;
}

.subscription-feedback{
	text-align: center;
}

.subscription-feedback h2{
	display: block;
	margin-bottom: 18px;
	font-size: 22px;
	line-height: 1.35;
}

.subscription-feedback h2 span{
	display: block !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 20px !important;
	line-height: 1.4;
}

#wrapper.subscription-feedback h2 img,
#wrapper.subscription-feedback p img{
	display: block;
	width: auto;
	max-width: 150px;
	height: auto;
	margin: 8px auto 18px;
	border-radius: 0;
}

.subscription-feedback p{
	text-align: center;
}

.subscription-feedback-back{
	margin-top: 4px;
	font-size: 14px;
	font-weight: 700;
}

.subscription-feedback-back a{
	color: var(--sendy-muted);
	text-decoration: none;
}

.subscription-feedback-back a:hover,
.subscription-feedback-back a:focus{
	color: var(--sendy-ink);
	text-decoration: none;
}

.g-recaptcha{
	max-width: 100%;
	margin: 2px 0 0 !important;
	overflow: hidden;
}

.pika-single{
	border: 1px solid var(--sendy-border);
	border-radius: 14px;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
	font-family: var(--sendy-font);
}

@media screen and (max-width: 520px){
	body{
		padding: 18px 12px;
	}

	#wrapper{
		margin-top: 0;
		padding: 24px 18px;
		border-radius: 20px;
	}

	#wrapper h2{
		font-size: 21px;
	}

	form{
		gap: 14px;
	}
}
