.envelo-button {
	white-space: nowrap;
	line-height: 1.428571429;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
	gap: 0.75rem;
	padding: 8px 20px;
	text-align: center;
	vertical-align: middle;
	touch-action: manipulation;
	cursor: pointer;
	font-weight: 700;
	font-size: 14px;

}.envelo-button-filled {
	border: 1px solid transparent;
	outline: none;
	background-color: var(--primary);
	color: var(--on-primary);
}

.envelo-button-filled:hover {
	background-color: var(--primary);
	box-shadow: 0 1px 3px 1px var( --surface-dim);
	opacity: .8
}

.envelo-button-filled:focus {
	background-color: var(--primary);
}

.envelo-button-filled:active {
	background-color: var(--primary);
}

.envelo-button-filled:disabled {
	pointer-events: none;
	background-color: var(--on-background);
	color: var(--outline);
}

.envelo-button-outlined {
	border-width: 1px;
    border-style: solid;
    border-color: var(--outline);
    background-color: transparent;
    color: var(--primary);
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.envelo-button-outlined:hover {
	background: color-mix(in srgb, var(--primary) 8%, transparent);
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
}

.envelo-button-outlined:focus {
	background-color: var(--on-background);
	border: 1px solid var(--md-sys-color-tertiary);
}

.envelo-button-outlined:active {
	background-color: var(--surface-tint);
}

.envelo-button-outlined:disabled {
	pointer-events: none;
	color: var(--outline);
	border: 1px solid var(--outline);
}

.envelo-button-text {
	border: 1px solid transparent;
	background-color: transparent;
	padding: 8px !important;
	outline: none;
}

.envelo-button-text:hover {
	background-color: var(--on-primary);
}

.envelo-button-text:focus,
.envelo-button-text:active {
	background-color: var(--on-primary);
}

.envelo-button-text:disabled {
	pointer-events: none;
	color: var(--outline);
}

.envelo-error-media-container {
	display: inline-block;
	font-weight: 700;
	font-size: 12px;
	line-height: 20.308px;
	opacity: 0.7;
	border-radius: 0.25rem;
	padding: 2px 20px 2px 20px;
	margin-top: 10px;
	background-color: var(--md-sys-color-error);
	color: var(--md-sys-color-on-error);
	width: 80%;
	padding: 0.5rem !important;
}

.envelo-input-container {
	display: flex;
	flex-direction: column;
	position: relative;
	height: 74px;
	width: 100%;
}

.envelo-input,
.envelo-input:-webkit-autofill {
	width: 100%;
	height: 56px;
	border-radius: 4px;
	padding: 4px 0 4px 16px;
	border: 1px solid hsl(69, 6%, 45%);
	background-color: var(--on-primary) !important;
	outline: none;
	-webkit-box-shadow: 0 0 0 1000px white inset !important;
}

.envelo-input:focus,
.envelo-input:-webkit-autofill:focus {
	border: 2px solid var(--md-sys-color-tertiary);
}

.envelo-input:focus + label {
	pointer-events: none;
	color:var(--md-sys-color-tertiary);
}

.envelo-input:disabled,
.envelo-input:-webkit-autofill:disabled {
	border: 1px solid var(--shadow);
}

.envelo-input:disabled + label {
	pointer-events: none;
	color: var(--shadow);
}

.envelo-input-invalid {
	color: var(--error);
}

.envelo-input-error-message {
	color: var(--error);
	position: absolute;
	padding-top: 4px;
	font-size: 12px;
	left: 10px;
}

.envelo-input-label {
	color: var(--md-sys-color-on-background);
	font-size: 12px;
	position: absolute;
	left: 10px;
	z-index: 20;
	top: -6px;
	background-color: var(--on-primary);
	padding: 0 4px;
}

.envelo-input-label-invalid {
	color: var(--error);
}

.envelo-border {
	border: 1px solid var(--primary);
	padding: 16px;
	margin-bottom: 10px;
}

.envelo-border-error {
	border: 1px solid var(--primary);
	padding: 16px;
	margin-bottom: 10px;
	color: var(--md-sys-color-error);
}

.envelo-card {
	background-color: var(--surface-container);
	border-radius: 28px;
	justify-content: center;
	width: 100%;
	height: 560px;
	padding: 18px 15px !important;
	gap: 36px;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 560px;
}

.envelo-card-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.envelo-info-container {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--on-primary);
	color: var( --surface-dim);
	padding: 15px;
	border: 1px solid var(--secondary);
	border-radius: 2px;
}

.envelo-input-error-msg {
	color: var(--md-sys-color-error);
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	padding: 0 16px;
}

.envelo-input-error-border {
	border: 3px solid var(--error);
}

.image-container {
	display: flex;
	width: 400px;
	gap: 10px;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
}

.envelo-error-message {
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	text-align: center;
	color: var(--error);
}

.envelo-card-title {
	font-weight: 700;
	font-size: 36px;
	line-height: 44px;
	text-align: center;
	padding: 0;
	margin: 0;
}

.form-group-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	align-items: center;
	justify-content: center;
  }

@media (min-width: 786px) {
	.envelo-input-container {
		width: auto;
	}

	.envelo-input,
	.envelo-input:-webkit-autofill {
		width: 360px;
	}

	.envelo-card {
		width: 420px;
		padding: 36px 30px;
	}
}