.vcp-login-wrap {
	max-width: 420px;
	margin: 0 auto;
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
	--vcp-blue: #0065BD;
	--vcp-orange: #FCB714;
	--vcp-ochre: #C8963E;
	--vcp-text: #1f2933;
	--vcp-muted: #6b7280;
	--vcp-border: #d7dbe0;
}

.vcp-title {
	font-size: 26px;
	font-weight: 800;
	color: var(--vcp-text);
	margin: 0 0 8px;
}

.vcp-subtitle {
	color: var(--vcp-muted);
	margin: 0 0 24px;
	line-height: 1.5;
}

.vcp-notice {
	padding: 10px 14px;
	border-radius: 6px;
	font-size: 14px;
	margin-bottom: 16px;
}

.vcp-notice-error {
	background: #fdecea;
	color: #b42318;
}

.vcp-notice-success {
	background: #ecfdf3;
	color: #067647;
}

.vcp-form {
	display: flex;
	flex-direction: column;
}

.vcp-label {
	font-weight: 700;
	font-size: 14px;
	color: var(--vcp-text);
	margin: 14px 0 6px;
}

.vcp-input {
	padding: 12px 14px;
	border: 1px solid var(--vcp-border);
	border-radius: 8px;
	font-size: 15px;
	width: 100%;
	box-sizing: border-box;
}

.vcp-input:focus {
	outline: none;
	border-color: var(--vcp-blue);
	box-shadow: 0 0 0 3px rgba(0, 101, 189, 0.15);
}

.vcp-password-wrap {
	position: relative;
}

.vcp-password-wrap .vcp-input {
	padding-right: 92px;
}

/* Hide every browser/vendor's own built-in "reveal password" or
   credentials icon so it can never collide with our custom Tonen-button. */
.vcp-password-wrap input[type="password"]::-ms-reveal,
.vcp-password-wrap input[type="password"]::-ms-clear {
	display: none;
}

.vcp-password-wrap input[type="password"]::-webkit-textfield-decoration-container {
	display: none !important;
}

.vcp-password-wrap input[type="password"]::-webkit-credentials-auto-fill-button,
.vcp-password-wrap input[type="password"]::-webkit-strong-password-auto-fill-button,
.vcp-password-wrap input[type="password"]::-webkit-caps-lock-indicator {
	visibility: hidden !important;
	display: none !important;
	pointer-events: none;
	position: absolute;
	right: 0;
}

.vcp-login-wrap .vcp-toggle-password {
	position: absolute;
	right: 6px;
	top: 6px;
	bottom: 6px;
	z-index: 2;
	min-width: 66px;
	background-color: #fff !important;
	background-image: none !important;
	border: 1px solid var(--vcp-border) !important;
	border-radius: 5px !important;
	color: var(--vcp-blue) !important;
	font-size: 12px !important;
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif !important;
	font-weight: 700 !important;
	letter-spacing: 0.2px;
	text-transform: none !important;
	cursor: pointer;
	padding: 0 12px !important;
	margin: 0 !important;
	white-space: nowrap;
	line-height: 1;
	box-shadow: none !important;
	height: auto !important;
	width: auto !important;
}

.vcp-login-wrap .vcp-toggle-password:hover,
.vcp-login-wrap .vcp-toggle-password:focus {
	background-color: var(--vcp-blue) !important;
	color: #fff !important;
	border-color: var(--vcp-blue) !important;
}

.vcp-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 16px 0 22px;
	font-size: 14px;
	flex-wrap: wrap;
	gap: 8px;
}

.vcp-remember {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--vcp-text);
}

.vcp-forgot-link,
.vcp-back-link a {
	color: var(--vcp-blue);
	text-decoration: none;
	font-weight: 600;
}

.vcp-forgot-link:hover,
.vcp-back-link a:hover {
	text-decoration: underline;
}

.vcp-login-wrap .vcp-button {
	background-color: var(--vcp-orange) !important;
	background-image: none !important;
	color: #1f2933 !important;
	border: none !important;
	border-radius: 8px !important;
	padding: 14px !important;
	margin-top: 22px;
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	cursor: pointer;
	width: 100%;
	transition: background-color .15s ease;
}

.vcp-login-wrap .vcp-button:hover,
.vcp-login-wrap .vcp-button:focus {
	background-color: var(--vcp-ochre) !important;
	color: #1f2933 !important;
}

.vcp-no-account {
	margin-top: 20px;
	font-size: 13px;
	color: var(--vcp-muted);
	text-align: center;
}

.vcp-back-link {
	margin-top: 18px;
	font-size: 14px;
}
