* {
	box-sizing: border-box;
	overflow: scroll !important;
}

body {
	margin: 0;
	background: #000000;
	/*padding: 1.5rem !important;*/
}

.registry-form {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 64px;
}

.form-fields {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.form-row {
	display: flex;
	align-items: flex-start;
	gap: 32px;
	width: 100%;
}

.form-field {
	flex: 1 1 0;
	height: 34px;
	padding-bottom: 10px;
	border-bottom: 0.5px solid #BBBBBB;
	display: flex;
	align-items: center;
	position: relative;
	color: #BBBBBB;
	font-family: Inter, Arial, sans-serif;
	font-weight: 300;
	line-height: 16.8px;
}

.form-field span:first-child {
	color: #BBB2BB;
}

.required {
	color: #EAC54D;
	margin-left: 2px;
}

.form-field input,
.form-field select {
	inset: 0;
	width: 100%;
	height: 100%;
	padding-top: 12px;
	background: transparent;
	border: none;
	outline: none;
	color: white;
	font-family: Inter, Arial, sans-serif;
}

.form-field input {
	padding-left: 0;
}

.form-field select {
	appearance: none;
	cursor: pointer;
	padding-right: 24px;
}

.select-field::after {
	content: "";
	right: 4px;
	top: 10px;
	width: 11px;
	height: 7px;
	background: #EAC54D;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	pointer-events: none;
}

.request-button {
	padding: 12px 32px;
	background: #EAC54D;
	border: none;
	color: #000000;
	font-size: 14px;
	font-family: Inter, Arial, sans-serif;
	font-weight: 500;
	line-height: 19.6px;
	letter-spacing: 1.68px;
	text-transform: none;
	cursor: pointer;
}

.registry-heading {
	color: white;
	font-family: Baskervville, Georgia, serif;
	font-size: 34px;
	font-style: italic;
	font-weight: 400;
	line-height: 30.6px;
	position: inline;
	padding-top: 30px;
}


.registry-tagline {
	color: #EAC54D;
	font-family: Baskervville, Georgia, serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 18px;
}

/* ----------------------------------
	Mobile layout
---------------------------------- */
@include media-breakpoint-down(sm) {
}

@include media-breakpoint-down(md) {
}

@include media-breakpoint-down(lg) {
}

@include media-breakpoint-down(xl) {
}

@include media-breakpoint-down(xxl) {
}


/* Mini devices (landscape phones, 400px and up) */
@media (max-width: 400px) {

	.registry-page {
		max-width: 380px;
	}

	/* Mobile logo */
	.logo-mark {
		left: 90px;
		/*top: 95px;*/
		width: 250px;
		height: 38px;
		gap: 14px;
		margin-bottom: 0px;
	}

	.form-field span:first-child {
		font-size: 12px;
		width: 200px;
	}
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {

	.registry-page {
		max-width: 570px;
	}

	/* Mobile logo */
	.logo-mark {
		left: 90px;
		/*top: 95px;*/
		width: 450px;
		height: 38px;
		gap: 14px;
		margin-bottom: 0px;
	}

	.form-field span:first-child {
		font-size: 12px;
		width: 200px;
	}
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {

	.registry-page {
		max-width: 760px;
	}

	/* Hide desktop-only decorations */
	.glow-desktop-left,
	.glow-desktop-right,
	.desktop-corner-line,
	.desktop-corner-block {
		display: none;
	}

	/* Mobile glow effects */
	.glow-mobile-top,
	.glow-mobile-bottom {
		display: block;
	}

	.glow-mobile-top {
		/*width: 307px;*/
		height: 307px;
		left: 211px;
		top: -122px;
		/*background: rgba(234, 197, 77, 0.5);*/
	}

	.glow-mobile-bottom {
		/*width: 258px;*/
		height: 258px;
		left: -79px;
		top: 727px;
		/*background: rgba(234, 197, 77, 0.5);*/
	}

	/* Mobile logo */
	.logo-mark {
		left: 90px;
		/*top: 95px;*/
		width: 500px;
		height: 38px;
		gap: 14px;
		margin-bottom: 30px;
	}

	.logo-piece {
		width: 28px;
		height: 37px;
	}

	.logo-piece:nth-child(2) {
		width: 25px;
	}

	.logo-piece:nth-child(3) {
		width: 34px;
	}

	.logo-piece:nth-child(4) {
		width: 32px;
	}

	.logo-piece:nth-child(5) {
		width: 23px;
	}

	.logo-piece:nth-child(6) {
		width: 26px;
	}

	/* Mobile heading */
	.registry-heading {
		left: 65px;
		top: 149px;
		font-size: 24px;
		line-height: 21.6px;
		text-align: center;
	}

	/* Mobile form */
	.registry-form {
		left: 28px;
		top: 234px;
		gap: 40px;
		align-items: center;
	}

	.form-fields {
		width: 320px;
		gap: 24px;
	}

	.form-field span:first-child {
		font-size: 12px;
		width: 200px;
	}

	.form-row {
		flex-direction: column;
		gap: 24px;
	}

	.form-field {
		width: 320px;
		flex: none;
		height: 34px;
		border-bottom: 0.25px solid white;
		font-size: 10px;
		line-height: 19.6px;
	}

	.form-field input,
	.form-field select {
		font-size: 14px;
	}

	.request-button {
		width: auto;
		height: 52px;
		padding: 12px 32px;
		font-size: 14px;
		line-height: 19.6px;
		letter-spacing: 1.68px;
	}

	.registry-tagline {
		left: 41px;
		top: 822px;
		font-size: 16px;
		line-height: 14.4px;
		padding-top: 30px;
	}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	.registry-page {
		position: absolute;
		width: 100%;
		min-height: 100vh;
		position: relative;
		overflow: hidden;
		background: #000000;
		color: white;
		font-family: Inter, Arial, sans-serif;
	}

	/* ----------------------------------
		Background glow effects
	---------------------------------- */

	.glow {
		position: absolute !important;
		border-radius: 9999px;
		filter: blur(192px);
		box-shadow: 384px 384px 384px;
		pointer-events: none;
	}

	.glow-desktop-left {
		width: 429px;
		height: 429px;
		left: -164px;
		top: 519px;
		background: rgba(234, 197, 77, 0.45);
	}

	.glow-desktop-right {
		width: 655px;
		height: 655px;
		left: 1097px;
		top: -153px;
		background: rgba(234, 197, 77, 0.16);
	}

	.glow-mobile-top,
	.glow-mobile-bottom {
		display: none;
	}

	/* ----------------------------------
		Desktop corner decoration
	---------------------------------- */
	.desktop-corner-line {
		position: absolute;
		outline: 0.5px solid #EAC54D;
		outline-offset: -0.25px;
	}

	.vertical-line {
		width: 571px;
		height: 1px;
		left: 64px;
		top: 768px;
		transform: rotate(-90deg);
		transform-origin: top left;
		background-image: url('images/line1.svg');
	}

	.horizontal-line {
		width: 543px;
		height: 1px;
		left: 0;
		top: 693px;
		background-image: url('images/line2.svg');
	}

	.desktop-corner-block {
		width: 48px;
		height: 47px;
		left: 88px;
		top: 716px;
		position: absolute;
		transform: rotate(180deg);
		transform-origin: top left;
		/*background: #EAC54D;*/
		background-image: url('images/star.svg');
	}

	/* ----------------------------------
		Logo / brand mark
	---------------------------------- */

	.logo-mark {
		/*position: absolute;
		left: 521px;
		top: 100px;*/
		display: flex;
		align-items: flex-end;
		gap: 18px;
		width: 399px;
		height: 60px;
		left: 28%;
		top: 50%;
		margin-bottom: 60px;
	}

	.logo-piece {
		display: block;
		width: 42px;
		height: 58px;
		background: white;
	}

	.logo-piece:nth-child(2) {
		width: 40px;
	}

	.logo-piece:nth-child(3) {
		width: 54px;
	}

	.logo-piece:nth-child(4) {
		width: 51px;
	}

	.logo-piece:nth-child(5) {
		width: 37px;
	}

	.logo-piece:nth-child(6) {
		width: 41px;
	}

	.logo-piece.gold {
		background: #EAC54D;
	}

	/* ----------------------------------
		Heading
	---------------------------------- */

	.registry-heading {
		/*position: absolute;*/
		left: 544px;
		top: 184px;
		margin: 0;
		color: white;
		font-family: Baskervville, Georgia, serif;
		font-size: 34px;
		font-style: italic;
		font-weight: 400;
		line-height: 30.6px;
	}

	/* ----------------------------------
		Form layout
	---------------------------------- */

	.registry-form {
		position: absolute;
		left: 0px;
		top: 296px;
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		gap: 64px;
	}

	.form-fields {
		width: 753px;
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.form-row {
		display: flex;
		align-items: flex-start;
		gap: 32px;
		width: 100%;
	}

	.form-field {
		flex: 1 1 0;
		height: 34px;
		padding-bottom: 10px;
		border-bottom: 0.5px solid #BBBBBB;
		display: flex;
		align-items: center;
		position: relative;
		color: #BBBBBB;
		font-size: 12px;
		font-family: Inter, Arial, sans-serif;
		font-weight: 300;
		line-height: 16.8px;
	}

	.form-field span:first-child {
		color: #BBBB2B;
	}

	.required {
		color: #EAC54D;
		margin-left: 2px;
	}

	.form-field input,
	.form-field select {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		padding-top: 12px;
		background: transparent;
		border: none;
		outline: none;
		color: white;
		font-size: 12px;
		font-family: Inter, Arial, sans-serif;
	}

	.form-field input {
		padding-left: 0;
	}

	.form-field select {
		appearance: none;
		cursor: pointer;
		padding-right: 24px;
	}

	.select-field::after {
		content: "";
		position: absolute;
		right: 4px;
		top: 10px;
		width: 11px;
		height: 7px;
		background: #EAC54D;
		clip-path: polygon(0 0, 100% 0, 50% 100%);
		pointer-events: none;
	}

	/* ----------------------------------
		Button
	---------------------------------- */

	.request-button {
		width: 211px;
		height: 52px;
		padding: 12px 32px;
		background: #EAC54D;
		border: none;
		color: #000000;
		font-size: 14px;
		font-family: Inter, Arial, sans-serif;
		font-weight: 500;
		line-height: 19.6px;
		letter-spacing: 1.68px;
		text-transform: none;
		cursor: pointer;
	}

	.request-button:hover {
		background: #f1d66a;
	}

	/* ----------------------------------
		Tagline
	---------------------------------- */

	.registry-tagline {
		position: absolute;
		left: 0px;
		top: 684px;
		color: #EAC54D;
		font-family: Baskervville, Georgia, serif;
		font-size: 20px;
		font-weight: 400;
		line-height: 18px;
		padding-top: 30px;
	}
}
