.input-group {
	position: relative;
	margin-bottom: 1.5rem;
}

.input-group input {
	border: 1px solid #d1d5db;
	padding: 0.75rem;
	width: 100%;
	border-radius: 0.375rem;
	outline: none;
	transition: all 0.2s;
}

.input-group input:focus {
	border-color: #4f46e5;
}

.input-group span {
	position: absolute;
	left: 0.75rem;
	top: 0.75rem;
	pointer-events: none;
	color: #6b7280;
	transition: all 0.2s;
}

/* Autofill styles */
.input-group input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px white inset;
	-webkit-text-fill-color: #000;
	transition: background-color 5000s ease-in-out 0s;
}

.input-group input:focus+span,
.input-group input:not(:placeholder-shown)+span,
.input-group input:-webkit-autofill+span {
	top: -0.75rem;
	left: 0.5rem;
	font-size: 0.75rem;
	color: #4f46e5;
	background-color: white;
	padding: 0 0.25rem;
}

#toast-container.toast-top-right {
	position: absolute;
	top: 60px;
	right: 0;
}

.toast-success {
	background-color: bg-green-500 !important;
	color: white !important;
}

.toast-error {
	background-color: bg-red-500 !important;
	color: white !important;
}