@media (max-width: 900px) {}

@media (max-width: 768px) {}

@media (max-width: 768px) {}

@media (max-width: 1024px) {}

@media (max-width: 768px) {}

.snake-input-wrapper {
	position: relative;
	padding: 2px;
	border-radius: var(--radius-md);
	background: #e2e8f0;
	overflow: visible;
	margin-bottom: 16px;
}

.snake-border-svg {
	position: absolute;
	top: -2px;
	left: -2px;
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	pointer-events: none;
	z-index: 10;
	overflow: visible;
}

.snake-border-path {
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	opacity: 0;
}

.snake-input-wrapper input, .snake-input-wrapper select, .snake-input-wrapper textarea {
	width: 100%;
	padding: 12px 16px;
	border: none !important;
	border-radius: calc(var(--radius-md) - 2px);
	font-family: var(--font-sans);
	font-size: 1rem;
	color: var(--text-main);
	background: #f8fafc;
	margin-bottom: 0 !important;
	transition: background .2s ease;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
}

.snake-input-wrapper input:focus, .snake-input-wrapper select:focus, .snake-input-wrapper textarea:focus {
	outline: none;
	background: #fff;
}

.snake-card-svg {
	position: absolute;
	top: -1px;
	left: -1px;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	pointer-events: none;
	z-index: 0;
	overflow: visible;
}

.snake-card-path {
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 2000;
	stroke-dashoffset: 2000;
	opacity: 0;
}

@media (max-width: 600px) {}

@media (max-width: 900px) {}