* {
	box-sizing: border-box
}

:root {
	--g: #244d36;
	--d: #173827;
	--s: #e0e9d8;
	--p: #fffdf9;
	--gold: #c69a4b;
	--m: #707770;
	--l: #e4e7df;
	--err: #a35f52
}

body {
	margin: 0;
	background: var(--p);
	color: #20251f;
	font: 14px "DM Sans", Arial, sans-serif
}

a {
	text-decoration: none;
	color: inherit
}

.container {
	width: min(1180px, calc(100% - 40px));
	margin: auto
}

.brand {
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--g)
}

.brand>b {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--g);
	color: #fff;
	display: grid;
	place-items: center;
	font: 22px "Playfair Display", serif
}

.brand span {
	display: flex;
	flex-direction: column;
	line-height: 1
}

.brand strong {
	font: 25px "Playfair Display", serif
}

.brand small {
	font-size: 7px;
	letter-spacing: .28em;
	font-weight: 700;
	margin-top: 5px
}

.header {
	height: 78px;
	border-bottom: 1px solid var(--l);
	background: #fffdf9ee;
	position: sticky;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(10px)
}

.actions {
	display: flex;
	gap: 5px;
	margin-left: auto
}

.actions a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: var(--g);
	position: relative
}

.actions a:hover {
	background: var(--s)
}

.actions em {
	position: absolute;
	right: -1px;
	top: -1px;
	background: var(--g);
	color: #fff;
	border-radius: 20px;
	font: 8px Arial;
	padding: 3px 5px
}

.hero {
	background: linear-gradient(110deg, #edf2e8, #f7f3e9);
	padding: 42px 0 55px;
	min-height:200px;
	
}

.crumb {
	display: flex;
	gap: 8px;
	/* font-size: 10px; */
	color: #909890;
	margin-bottom: 35px
}

.crumb a {
	color: var(--g)
}

.eyebrow {
	font-size: 11px;
	letter-spacing: .19em;
	color: var(--gold);
	font-weight: 800
}

.hero h1 {
	font: clamp(42px, 5vw, 61px) "Playfair Display", serif;
	color: var(--g);
	line-height: 1;
	margin: 8px 0 13px
}

.hero h1 em {
	font-style: normal;
	color: var(--gold)
}

.hero p {
	font-size: 13px;
	line-height: 1.8;
	color: var(--m);
	max-width: 610px;
	margin: 0
}

.auth-section {
	background: #f7f6f0;
	padding: 35px 0 80px
}

.auth-card {
	background: #fff;
	border: 1px solid var(--l);
	border-radius: 16px;
	display: grid;
	grid-template-columns: 1fr 1px 1fr;
	overflow: hidden;
	box-shadow: 0 15px 45px #203a2410
}

.auth-panel {
	padding: 35px 38px
}

.separator {
	background: var(--l);
	margin: 30px 0
}

.panel-heading {
	display: flex;
	gap: 12px;
	margin-bottom: 23px
}

.panel-number {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--s);
	color: var(--g);
	display: grid;
	place-items: center;
	font-size: 8px;
	font-weight: 800;
	flex: none
}

.panel-heading h2 {
	font: 29px "Playfair Display", serif;
	color: var(--g);
	margin: 4px 0
}

.panel-heading p {
	/* font-size: 12px; */
	color: #858c84;
	margin: 0
}

.auth-panel label {
	display: block;
	font-size: 14px;
	color: var(--g);
	font-weight: 800;
	margin: 0 0 5px
}

.input-wrap {
	position: relative;
	margin-bottom: 14px
}

.input-wrap>i:first-child {
	position: absolute;
	left: 12px;
	top: 12px;
	color: #879188;
	font-size: 13px;
	z-index: 1
}

.input-wrap input {
	width: 100%;
	height: 41px;
	border: 1px solid #d6ddd3;
	border-radius: 7px;
	background: #fff;
	padding: 0 36px;
	font: 11px "DM Sans", sans-serif;
	outline: none
}

.input-wrap input:focus {
	border-color: var(--g);
	box-shadow: 0 0 0 3px #244d3610
}

.input-wrap.invalid input {
	border-color: var(--err)
}

.input-wrap.valid input {
	border-color: #6d9a70
}

.field-error {
	display: none;
	color: var(--err);
	font-size: 7px;
	margin-top: 4px
}

.input-wrap.invalid .field-error {
	display: block
}

.toggle-password {
	position: absolute;
	right: 7px;
	top: 5px;
	width: 30px;
	height: 30px;
	border: 0;
	background: none;
	color: #7f887f
}

.form-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 2px 0 16px
}

.check {
	display: flex !important;
	align-items: center;
	gap: 6px !important;
	color: #777f77 !important;
	font-weight: 400 !important;
	margin: 0 !important
}

.check input {
	width: 14px;
	height: 14px;
	margin: 0
}

.form-row a {
	font-size: 12px;
	color: var(--g);
	font-weight: 700
}

.primary {
	height: 45px;
	width: 100%;
	border: 0;
	border-radius: 7px;
	background: var(--g);
	color: #fff;
	/* font-size: 12px; */
	font-weight: 800
}

.primary:hover {
	background: #193b29
}

.divider {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 18px 0;
	color: #a0a79f;
	font-size: 7px
}

.divider:before, .divider:after {
	content: "";
	height: 1px;
	background: var(--l);
	flex: 1
}

.guest {
	height: 43px;
	border: 1px solid #cbd5c8;
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	color: var(--g);
	font-size: 12px;
	font-weight: 800
}

.panel-note {
	display: flex;
	gap: 8px;
	background: #f0f4eb;
	border-radius: 7px;
	padding: 10px;
	margin-top: 18px;
	font-size: 11px;
	color: #707970;
	line-height: 1.5;
	font-weight: bold;
}

.panel-note i {
	font-size: 15px;
	color: var(--g)
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 10px
}

.wide {
	grid-column: 1/-1
}

.password-meter {
	margin: -3px 0 11px
}

.password-meter>div {
	display: flex;
	justify-content: space-between;
	font-size: 7px;
	color: #90978f
}

.password-meter b {
	color: #9b8252
}

.password-meter>i {
	display: block;
	height: 3px;
	background: #e3e7e0;
	border-radius: 3px;
	margin-top: 5px;
	position: relative;
	overflow: hidden
}

.password-meter>i:after {
	content: "";
	display: block;
	height: 100%;
	width: 0;
	background: var(--gold);
	transition: .2s
}

.password-meter.weak>i:after {
	width: 33%;
	background: #b27658
}

.password-meter.medium>i:after {
	width: 66%;
	background: #c69a4b
}

.password-meter.strong>i:after {
	width: 100%;
	background: #5f8b62
}

.terms {
	margin: 4px 0 15px !important;
	line-height: 1.5
}

.terms a {
	color: var(--g);
	text-decoration: underline
}

.benefits {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 7px;
	border-top: 1px solid var(--l);
	margin-top: 20px;
	padding-top: 17px
}

.benefits>div {
	display: flex;
	gap: 7px
}

.benefits i {
	font-size: 15px;
	color: var(--g)
}

.benefits b, .benefits small {
	display: block
}

.benefits b {
	/* font-size: 11px; */
	color: var(--g)
}

.benefits small {
	font-size: 12px;
	color: #8b928a;
	margin-top: 2px;
	line-height: 1.3
}

.trust-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-top: 18px
}

.trust-row>div {
	background: #fff;
	border: 1px solid var(--l);
	border-radius: 9px;
	padding: 13px;
	display: flex;
	gap: 9px;
	align-items: center
}

.trust-row i {
	font-size: 17px;
	color: var(--g)
}

.trust-row b, .trust-row small {
	display: block
}

.trust-row b {
	/* font-size: 8px; */
	color: var(--g)
}

.trust-row small {
	/* font-size: 6px; */
	color: #8b928a;
	margin-top: 2px
}

#toast {
	position: fixed;
	right: 20px;
	bottom: 20px;
	background: var(--g);
	color: #fff;
	padding: 12px 16px;
	border-radius: 8px;
	opacity: 0;
	transform: translateY(10px);
	transition: .2s;
	z-index: 4000;
	font-size: 9px
}

#toast.show {
	opacity: 1;
	transform: none
}

#toast i {
	color: #dbc77e;
	margin-right: 6px
}

@media ( max-width :850px) {
	.nav nav {
		display: none
	}

	
	.auth-card {
		grid-template-columns: 1fr
	}
	.separator {
		height: 1px;
		margin: 0 35px
	}
	.trust-row {
		grid-template-columns: 1fr 1fr
	}
}

@media ( max-width :600px) {
	.container {
		width: calc(100% - 28px)
	}
	.header, .nav {
		height: 68px
	}
	.brand>b {
		width: 35px;
		height: 35px
	}
	.brand strong {
		font-size: 22px
	}
	.hero {
		padding-bottom: 40px
	}
	.auth-section {
		padding-top: 20px
	}
	.auth-panel {
		padding: 25px 18px
	}
	.panel-heading h2 {
		font-size: 26px
	}
	.form-grid {
		grid-template-columns: 1fr
	}
	.wide {
		grid-column: auto
	}
	.benefits {
		grid-template-columns: 1fr
	}
	.trust-row {
		grid-template-columns: 1fr
	}
}