@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.signin-view {
	display: flex;
	align-items: center;
	height: 100%;
	position: fixed;
	width: 100%;
	overflow: auto;
}

.signin-content {
	border-radius: 10px;
	max-width: 500px;
	background-color: white;
	padding: 10px 30px 20px 30px;
	align-items: center;
	margin: 16px;
	box-shadow: 0 2px 8px 0 rgb(0 0 0 / 8%);
}

.subscribe-button {
	color: white;
	background-color: red;
	cursor: pointer;
	margin: auto;
	font-weight: bold;
}

.nys-button {
	position: relative;
	text-align: center;
	white-space: nowrap;
	outline: none;
	cursor: pointer;
	display: flex;
	height: 32px;
	padding: 0 14px;
	color: #1a1a1a;
	font-weight: 500;
	border-radius: 0px;
	border: none;
	justify-content: center;
	align-items: center;
	text-decoration: underline;
	box-shadow: none !important;
	background-color: transparent;
}

h4, .v-label-h4 {
	font-size: var(--lumo-font-size-l);
}

/* Tab Navigation Styles */
.tab-navigation {
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	overflow: hidden;
}

.tab-item {
	flex: 1;
	text-align: center;
	padding: 6px 8px;
	position: relative;
	background-color: white;
	font-weight: 500;
	color: #333;
	white-space: nowrap;
}

.tab-item.active {
	background-color: #d4e9f7;
	font-weight: 600;
	z-index: 1;
}

.tab-item.has-border-right {
	border-right: 1px solid #e0e0e0;
}

.tab-item a {
	text-decoration: none;
	color: inherit;
	display: block;
}

@media (max-width: 600px) {
	.signin-content {
		max-width: 90%;
		padding: 20px;
		margin: 10px auto;
		box-shadow: 0 1px 5px 0 rgb(0 0 0 / 10%);
	}

	.v-formlayout {
		width: 100% !important;
	}

	input,
	.v-textfield,
	.v-button {
		width: 100% !important;
	}
}

@media (min-width: 601px) and (max-width: 900px) {
	.signin-content {
		max-width: 80%;
		padding: 25px;
	}
}