.custom-form {
	width: 100%;
	height: auto;
	display: flex;
	position: relative;
	flex-direction: row;
	padding: 0 5rem;
	/* color: rgb(255, 255, 255); */
	gap: 10px;
}

.v1.framer-custom-input {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: auto;
	outline: none;
	border: none;
	padding: 15px;
	border-radius: 10px;
	font-size: 16px;
	font-family: "Inter", "Inter Placeholder", sans-serif;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0em;
	line-height: 1em;
	text-align: left;
	/* background: rgba(89, 89, 89, 0.6); */
	background-color: var(--color4);
	color: var(--color12);
	/* box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.4), inset 0 0 0 1px rgba(238, 238, 238, 0.15); */
	box-shadow: inset 0 0 0 0px var(--color5), inset 0 0 0 1px var(--color5);
}

.submit-wrapper {
	position: relative;
	top: 0;
	right: 0;
	bottom: 0;
}

::placeholder {
	color: var(--color8);
}

.submit-wrapper input[type="submit"] {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 100%;
	outline: none;
	border: none;
	cursor: pointer;
	padding: 17px 22px;
	border-radius: 10px;
	font-weight: 500;
	font-size: 16px;
	font-family: "Inter", sans-serif;
	font-style: normal;
	letter-spacing: 0em;
	line-height: 1em;
	/* background: rgb(255, 255, 255); */
	background-color: var(--color8);
	color: var(--color12);
	z-index: 1;
	/* box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25); */
	box-shadow: 0px 2px 4px var(--color7);
}

@media only screen and (max-width: 810px){
    form {
		width: 100%;
		height: auto;
		display: flex;
		position: relative;
		flex-direction: column !important;
		color: rgb(0, 0, 0);
		gap: 10px;
		padding: 0 0 !important;
	  }
	  
	  input[type="email"] {
		-webkit-appearance: none;
		appearance: none;
		width: 100%;
		height: auto;
		outline: none;
		border: none;
		padding: 15px 15px 15px 15px;
		border-radius: 10px;
		font-size: 16px;
		font-family: "Inter", "Inter Placeholder", sans-serif;
		font-style: normal;
		font-weight: 400;
		letter-spacing: 0em;
		line-height: 1em;
		text-align: left;
		background: rgba(89, 89, 89, 0.6);
		color: rgb(255, 255, 255);
		/* box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.4), inset 0 0 0 1px rgba(238, 238, 238, 0.15); */
		box-shadow: inset 0 0 0 0px var(--color12), inset 0 0 0 1px var(--color12);
	  }
	  
	  div {
		position: relative;
		top: 0;
		right: 0;
		bottom: 0;
	  }
	  
	  input[type="submit"] {
		-webkit-appearance: none;
		appearance: none;
		width: 100%;
		height: 100%;
		outline: none;
		border: none;
		cursor: pointer;
		padding: 17px 22px 17px 22px;
		border-radius: 10px;
		font-weight: 500;
		font-size: 16px;
		font-family: "Inter", sans-serif;
		font-style: normal;
		letter-spacing: 0em;
		line-height: 1em;
		/* background: rgb(255, 255, 255); */
		background: red;
		color: rgb(0, 0, 0);
		z-index: 1;
		box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
	  }
}