/**
 * VN Auth — modal, forms, account page.
 */

:root {
	--vn-auth-primary: #23652d;
	--vn-auth-primary-hover: #194d22;
	--vn-auth-text: #222;
	--vn-auth-muted: #757575;
	--vn-auth-border: #dedede;
	--vn-auth-error: #b42318;
	--vn-auth-success: #18794e;
}

.vn-auth-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

/* Modal */
.vn-auth-modal {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.22s ease, visibility 0.22s ease;
}

.vn-auth-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.vn-auth-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 18, 12, 0.52);
}

.vn-auth-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(510px, calc(100vw - 32px));
	max-height: calc(100vh - 32px);
	overflow: auto;
	background: #fff;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.vn-auth-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 40px;
	height: 40px;
	border: 1px solid var(--vn-auth-border);
	border-radius: 50%;
	background: #fff;
	color: var(--vn-auth-text);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.vn-auth-modal__close:hover {
	border-color: var(--vn-auth-primary);
	color: var(--vn-auth-primary);
}

.vn-auth-modal__header {
	padding: 28px 28px 0;
	text-align: center;
	border-bottom: 3px solid var(--vn-auth-primary);
	margin: 0 28px;
}

.vn-auth-modal__header h2 {
	margin: 0 0 18px;
	font-family: var(--vn-font-heading, "StagSansVU", "Be Vietnam Pro", Arial, sans-serif);
	font-size: clamp(28px, 3vw, 34px);
	font-weight: 500;
	line-height: 1.15;
	color: var(--vn-auth-text);
}

.vn-auth-modal__body {
	padding: 24px 28px 28px;
}

body.vn-auth-modal-open {
	overflow: hidden;
}

/* Forms */
.vn-auth-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.vn-auth-field__label {
	display: block;
	margin-bottom: 8px;
	font-family: var(--vn-font-body, "Be Vietnam Pro", Arial, sans-serif);
	font-size: 14px;
	font-weight: 500;
	color: var(--vn-auth-text);
}

.vn-auth-field__control {
	position: relative;
}

.vn-auth-field__icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--vn-auth-muted);
	pointer-events: none;
}

.vn-auth-field__input {
	width: 100%;
	min-height: 52px;
	padding: 0 16px 0 48px;
	border: 1px solid var(--vn-auth-border);
	border-radius: 0;
	background: #fff;
	color: var(--vn-auth-text);
	font-family: var(--vn-font-body, "Be Vietnam Pro", Arial, sans-serif);
	font-size: 15px;
}

.vn-auth-field__input:focus {
	outline: none;
	border-color: var(--vn-auth-primary);
	box-shadow: 0 0 0 2px rgba(35, 101, 45, 0.15);
}

.vn-auth-field__input:focus-visible {
	outline: 2px solid var(--vn-auth-primary);
	outline-offset: 1px;
}

.vn-auth-field.is-error .vn-auth-field__input {
	border-color: var(--vn-auth-error);
}

.vn-auth-field__error {
	margin: 6px 0 0;
	font-size: 13px;
	line-height: 1.4;
	color: var(--vn-auth-error);
}

.vn-auth-form__row--between {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.vn-auth-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--vn-auth-text);
	cursor: pointer;
}

.vn-auth-link {
	font-size: 14px;
	color: var(--vn-auth-primary);
	text-decoration: none;
}

.vn-auth-link:hover {
	color: var(--vn-auth-primary-hover);
	text-decoration: underline;
}

.vn-auth-submit,
.vn-auth-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	padding: 0 20px;
	font-family: var(--vn-font-body, "Be Vietnam Pro", Arial, sans-serif);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.vn-auth-submit {
	border: 1px solid var(--vn-auth-primary);
	background: var(--vn-auth-primary);
	color: #fff;
}

.vn-auth-submit:hover:not(:disabled) {
	background: var(--vn-auth-primary-hover);
	border-color: var(--vn-auth-primary-hover);
}

.vn-auth-submit:disabled {
	opacity: 0.7;
	cursor: wait;
}

.vn-auth-secondary {
	border: 1px solid #222;
	background: #fff;
	color: #222;
}

.vn-auth-secondary:hover {
	border-color: var(--vn-auth-primary);
	color: var(--vn-auth-primary);
}

.vn-auth-message {
	padding: 12px 14px;
	font-size: 14px;
	line-height: 1.5;
	border: 1px solid transparent;
}

.vn-auth-message.is-error {
	color: var(--vn-auth-error);
	background: rgba(180, 35, 24, 0.06);
	border-color: rgba(180, 35, 24, 0.18);
}

.vn-auth-message.is-success {
	color: var(--vn-auth-success);
	background: rgba(24, 120, 78, 0.08);
	border-color: rgba(24, 120, 78, 0.18);
}

/* Header auth */
.vn-header-auth {
	position: relative;
}

.vn-header-auth__toggle {
	background: none;
	border: none;
	cursor: pointer;
}

.vn-header-auth__label {
	max-width: 120px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vn-header-auth__menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 190px;
	padding: 8px 0;
	background: #fff;
	border: 1px solid #e8e8e8;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
	z-index: 1200;
}

.vn-header-auth__menu a {
	display: block;
	padding: 10px 16px;
	font-size: 14px;
	color: var(--vn-auth-text);
	text-decoration: none;
}

.vn-header-auth__menu a:hover {
	background: #f7f8f4;
	color: var(--vn-auth-primary);
}

.vn-header-auth--mobile .vn-header-auth__menu {
	right: auto;
	left: 0;
}

/* Account page */
.vn-account-page {
	padding: clamp(32px, 5vw, 56px) 0 clamp(48px, 6vw, 72px);
}

.vn-account-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	width: min(1040px, calc(100% - 40px));
	margin: 0 auto;
}

.vn-account-card {
	padding: clamp(24px, 4vw, 36px);
	border: 1px solid var(--vn-auth-border);
	background: #fff;
	box-shadow: 0 10px 30px rgba(20, 35, 20, 0.04);
}

.vn-account-card__title {
	margin: 0 0 22px;
	font-family: var(--vn-font-heading, "StagSansVU", "Be Vietnam Pro", Arial, sans-serif);
	font-size: clamp(26px, 2.8vw, 32px);
	font-weight: 500;
	line-height: 1.15;
	color: var(--vn-auth-text);
	text-align: center;
	border-bottom: 3px solid var(--vn-auth-primary);
	padding-bottom: 14px;
}

.vn-account-logged-in {
	width: min(920px, calc(100% - 40px));
	margin: 0 auto;
}

.vn-account-logged-in__title {
	margin: 0 0 24px;
	font-family: var(--vn-font-heading, "StagSansVU", "Be Vietnam Pro", Arial, sans-serif);
	font-size: clamp(30px, 3.4vw, 40px);
	font-weight: 500;
	text-align: center;
}

.vn-account-logged-in__card {
	padding: clamp(24px, 4vw, 36px);
	border: 1px solid var(--vn-auth-border);
	background: #fff;
}

.vn-account-logged-in__subtitle {
	margin: 0 0 18px;
	font-size: 20px;
	font-weight: 500;
}

.vn-account-logged-in__meta {
	display: grid;
	gap: 14px;
	margin: 0 0 24px;
}

.vn-account-logged-in__meta dt {
	font-size: 13px;
	color: var(--vn-auth-muted);
	margin-bottom: 4px;
}

.vn-account-logged-in__meta dd {
	margin: 0;
	font-size: 16px;
	color: var(--vn-auth-text);
}

.vn-account-logged-in__logout {
	max-width: 280px;
	margin: 0 auto;
}

.vn-profile-section {
	margin-bottom: 28px;
	padding-bottom: 8px;
	border-bottom: 1px solid #ececec;
}

.vn-profile-section:last-of-type {
	border-bottom: 0;
}

.vn-profile-section__title {
	margin: 0 0 18px;
	font-family: var(--vn-font-heading, "StagSansVU", "Be Vietnam Pro", Arial, sans-serif);
	font-size: clamp(20px, 2vw, 24px);
	font-weight: 500;
	color: var(--vn-auth-text);
}

.vn-profile-section__header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
}

.vn-profile-section__header .vn-profile-section__title {
	margin: 0;
}

.vn-profile-same-billing {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	cursor: pointer;
	user-select: none;
}

.vn-profile-same-billing__input {
	width: 16px;
	height: 16px;
	margin: 0;
	accent-color: var(--vn-auth-primary, #2d6a4f);
	cursor: pointer;
}

.vn-profile-same-billing__label {
	font-size: 14px;
	line-height: 1.4;
	color: var(--vn-auth-text);
}

.vn-profile-grid.is-same-as-billing {
	opacity: 0.72;
	pointer-events: none;
}

.vn-profile-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 20px;
}

.vn-profile-field--billing_address_1,
.vn-profile-field--billing_address_2,
.vn-profile-field--shipping_address_1,
.vn-profile-field--shipping_address_2,
.vn-profile-field--vn_delivery_note {
	grid-column: 1 / -1;
}

.vn-profile-field__textarea {
	min-height: 96px;
	padding: 12px 16px;
	resize: vertical;
}

.vn-profile-field__control .vn-auth-field__input {
	padding-left: 16px;
}

.vn-profile-form__actions {
	display: grid;
	gap: 12px;
	margin-top: 8px;
}

.vn-profile-form__logout {
	text-align: center;
}

@media (max-width: 767px) {
	.vn-profile-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 991px) {
	.vn-account-grid {
		gap: 24px;
	}
}

@media (max-width: 767px) {
	.vn-auth-modal__dialog {
		width: calc(100vw - 20px);
	}

	.vn-auth-modal__header,
	.vn-auth-modal__body {
		padding-left: 20px;
		padding-right: 20px;
	}

	.vn-auth-modal__header {
		margin-inline: 20px;
	}

	.vn-account-grid {
		grid-template-columns: 1fr;
	}

	.vn-site-header__actions .vn-header-auth__label {
		display: none;
	}
}

@media (max-width: 479px) {
	.vn-header-auth__label {
		display: none;
	}
}

/* Account dashboard */
.vn-account-dashboard {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.vn-account-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 1px solid #e4e8e2;
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
}

.vn-account-nav__item + .vn-account-nav__item {
	border-top: 1px solid #e4e8e2;
}

.vn-account-nav__link {
	display: block;
	padding: 14px 18px;
	color: var(--vn-auth-text);
	text-decoration: none;
	font-size: 15px;
	line-height: 1.4;
}

.vn-account-nav__link:hover,
.vn-account-nav__link.is-active {
	background: #f3f8f4;
	color: var(--vn-auth-primary);
}

.vn-account-nav__link--logout {
	color: #8a2b1f;
}

.vn-account-panel__title {
	margin: 0 0 20px;
	font-family: var(--vn-font-heading, "StagSansVU", "Be Vietnam Pro", Arial, sans-serif);
	font-size: clamp(22px, 2.2vw, 28px);
	font-weight: 500;
	color: var(--vn-auth-text);
}

.vn-account-overview__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 24px;
}

.vn-account-overview__stat {
	border: 1px solid #e4e8e2;
	border-radius: 10px;
	background: #fff;
	padding: 18px;
	text-align: center;
}

.vn-account-overview__stat-value {
	display: block;
	font-family: var(--vn-font-heading, "StagSansVU", "Be Vietnam Pro", Arial, sans-serif);
	font-size: 28px;
	font-weight: 500;
	color: var(--vn-auth-primary);
}

.vn-account-overview__stat-label {
	display: block;
	margin-top: 6px;
	font-size: 14px;
	color: var(--vn-auth-muted);
}

.vn-account-overview__subtitle {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 500;
}

.vn-account-overview__muted {
	color: var(--vn-auth-muted);
}

.vn-account-overview__cta {
	display: inline-block;
	width: auto;
	min-width: 220px;
	text-align: center;
	text-decoration: none;
}

.vn-account-empty {
	border: 1px dashed #d5ddd7;
	border-radius: 10px;
	padding: 32px 24px;
	text-align: center;
	background: #fafcfa;
}

.vn-account-empty .vn-auth-submit {
	display: inline-block;
	width: auto;
	min-width: 220px;
	margin-top: 16px;
	text-decoration: none;
}

.vn-account-orders__table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border: 1px solid #e4e8e2;
	border-radius: 10px;
	overflow: hidden;
}

.vn-account-orders__table th,
.vn-account-orders__table td {
	padding: 14px 16px;
	text-align: left;
	border-bottom: 1px solid #ececec;
	font-size: 14px;
}

.vn-account-orders__table th {
	background: #f7faf7;
	font-weight: 600;
}

.vn-account-orders__cards {
	display: none;
	gap: 16px;
}

.vn-account-order-card {
	border: 1px solid #e4e8e2;
	border-radius: 10px;
	background: #fff;
	padding: 20px;
}

.vn-account-order-card__row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
	font-size: 14px;
}

.vn-account-order-card__label {
	color: var(--vn-auth-muted);
}

.vn-account-order-card__action {
	display: block;
	width: 100%;
	margin-top: 12px;
	text-align: center;
	text-decoration: none;
}

.vn-account-status {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
}

.vn-account-status--pending,
.vn-account-status--on-hold {
	background: #fff7e8;
	color: #8a5a00;
}

.vn-account-status--processing {
	background: #e8f3ff;
	color: #1d4f91;
}

.vn-account-status--completed {
	background: #e8f6ec;
	color: var(--vn-auth-primary);
}

.vn-account-status--cancelled,
.vn-account-status--failed {
	background: #fdeeee;
	color: #9b2c2c;
}

.vn-account-status--refunded {
	background: #f2f2f2;
	color: #555;
}

.vn-account-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}

.vn-account-pagination__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border: 1px solid #e4e8e2;
	border-radius: 8px;
	text-decoration: none;
	color: var(--vn-auth-text);
	background: #fff;
}

.vn-account-pagination__link.is-active,
.vn-account-pagination__link:hover {
	border-color: var(--vn-auth-primary);
	color: var(--vn-auth-primary);
	background: #f3f8f4;
}

.vn-account-order-detail__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 24px;
}

.vn-account-order-detail__meta {
	margin: 8px 0 0;
	color: var(--vn-auth-muted);
	font-size: 14px;
}

.vn-account-order-detail__grid {
	display: grid;
	gap: 20px;
}

.vn-account-order-detail__section {
	border: 1px solid #e4e8e2;
	border-radius: 10px;
	background: #fff;
	padding: 20px;
}

.vn-account-order-detail__section h3 {
	margin: 0 0 14px;
	font-size: 18px;
	font-weight: 500;
}

.vn-account-order-detail__dl {
	margin: 0;
}

.vn-account-order-detail__dl > div {
	display: grid;
	grid-template-columns: 160px minmax(0, 1fr);
	gap: 12px;
	padding: 8px 0;
	border-bottom: 1px solid #f0f0f0;
}

.vn-account-order-detail__dl > div:last-child {
	border-bottom: 0;
}

.vn-account-order-detail__dl dt {
	margin: 0;
	color: var(--vn-auth-muted);
	font-weight: 500;
}

.vn-account-order-detail__dl dd {
	margin: 0;
}

.vn-account-order-detail__items {
	list-style: none;
	margin: 0;
	padding: 0;
}

.vn-account-order-detail__item {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid #f0f0f0;
}

.vn-account-order-detail__item:last-child {
	border-bottom: 0;
}

.vn-account-order-detail__item-media img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid #ececec;
}

.vn-account-order-detail__item-placeholder {
	display: block;
	width: 72px;
	height: 72px;
	border-radius: 8px;
	background: #f3f3f3;
}

.vn-account-order-detail__item-meta {
	margin: 6px 0 0;
	font-size: 13px;
	color: var(--vn-auth-muted);
}

.vn-account-order-detail__total-row dd,
.vn-account-order-detail__total-row dt {
	font-weight: 600;
	color: var(--vn-auth-primary);
}

.vn-account-order-detail__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

.vn-account-order-detail__actions .vn-auth-submit,
.vn-account-order-detail__actions .vn-auth-secondary {
	width: auto;
	min-width: 180px;
}

@media (max-width: 991px) {
	.vn-account-dashboard {
		grid-template-columns: 1fr;
	}

	.vn-account-nav__list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vn-account-nav__item + .vn-account-nav__item {
		border-top: 0;
		border-left: 1px solid #e4e8e2;
	}

	.vn-account-overview__stats {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.vn-account-orders__table-wrap {
		display: none;
	}

	.vn-account-orders__cards {
		display: grid;
	}

	.vn-account-order-detail__dl > div {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.vn-account-nav__list {
		grid-template-columns: 1fr;
	}

	.vn-account-nav__item + .vn-account-nav__item {
		border-left: 0;
		border-top: 1px solid #e4e8e2;
	}
}

/* WooCommerce lost / reset password */
.vn-account-page--lost-password {
	padding: 0;
}

.vn-account-page--lost-password .woocommerce {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

body.woocommerce-lost-password .woocommerce {
	width: 100%;
}

.vn-lost-password {
	display: flex;
	width: 100%;
	min-height: 560px;
	align-items: center;
	justify-content: center;
	padding: 72px 20px 90px;
	background: #f7f8f5;
	box-sizing: border-box;
}

.vn-lost-password__card {
	width: min(100%, 600px);
	padding: clamp(30px, 5vw, 52px);
	border: 1px solid #e5e9e2;
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 15px 45px rgb(15 75 35 / 8%);
	box-sizing: border-box;
}

.vn-lost-password__icon {
	display: flex;
	width: 64px;
	height: 64px;
	align-items: center;
	justify-content: center;
	margin: 0 auto 22px;
	border-radius: 50%;
	background: rgb(126 190 46 / 12%);
	color: #174d25;
}

.vn-lost-password__header {
	margin-bottom: 30px;
	text-align: center;
}

.vn-lost-password__title {
	margin: 0;
	color: #142418;
	font-size: clamp(27px, 3vw, 36px);
	font-weight: 700;
	line-height: 1.25;
}

.vn-lost-password__description {
	max-width: 500px;
	margin: 14px auto 0;
	color: #69726b;
	font-size: 15px;
	line-height: 1.7;
}

.vn-lost-password__form {
	margin: 0;
}

.vn-lost-password__field {
	margin: 0;
}

.vn-lost-password__field label {
	display: block;
	margin-bottom: 9px;
	color: #1d2a20;
	font-size: 14px;
	font-weight: 600;
}

.vn-lost-password__field .required {
	color: #c62828;
}

.vn-lost-password__field input.input-text {
	width: 100%;
	height: 52px;
	padding: 0 16px;
	border: 1px solid #d8ded7;
	border-radius: 3px;
	background: #fff;
	color: #172019;
	font-size: 15px;
	outline: none;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
	box-sizing: border-box;
}

.vn-lost-password__field input.input-text:hover {
	border-color: #aeb8ad;
}

.vn-lost-password__field input.input-text:focus {
	border-color: #174d25;
	box-shadow: 0 0 0 3px rgb(23 77 37 / 10%);
}

.vn-lost-password__actions {
	margin-top: 22px;
}

.vn-lost-password__submit.button {
	display: inline-flex;
	width: 100%;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border: 1px solid #174d25;
	border-radius: 3px;
	background: #174d25;
	color: #fff;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.vn-lost-password__submit.button:hover,
.vn-lost-password__submit.button:focus-visible {
	border-color: #79b82a;
	background: #79b82a;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 7px 18px rgb(23 77 37 / 18%);
}

.vn-lost-password__submit.button:focus-visible {
	outline: 3px solid rgb(121 184 42 / 24%);
	outline-offset: 3px;
}

.vn-lost-password__back {
	margin-top: 24px;
	text-align: center;
}

.vn-lost-password__back a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #415047;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
}

.vn-lost-password__back a:hover,
.vn-lost-password__back a:focus-visible {
	color: #79b82a;
}

body.woocommerce-lost-password .woocommerce-error,
body.woocommerce-lost-password .woocommerce-message,
body.woocommerce-lost-password .woocommerce-info,
.vn-account-page--lost-password .woocommerce-error,
.vn-account-page--lost-password .woocommerce-message,
.vn-account-page--lost-password .woocommerce-info {
	width: min(calc(100% - 40px), 600px);
	margin: 30px auto 0;
	box-sizing: border-box;
}

@media (max-width: 767px) {
	.vn-lost-password {
		min-height: 500px;
		padding: 48px 16px 64px;
	}

	.vn-lost-password__card {
		padding: 30px 22px;
	}

	.vn-lost-password__icon {
		width: 56px;
		height: 56px;
		margin-bottom: 18px;
	}

	.vn-lost-password__title {
		font-size: 27px;
	}

	.vn-lost-password__description {
		font-size: 14px;
	}

	.vn-lost-password__submit.button {
		min-height: 52px;
		padding-inline: 16px;
	}
}
