.auth-form {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 0.25rem;

	width: 100%;
	/* margin-bottom: 1.5rem; */

	/* overflow-y: auto; */
}

.auth-form-section {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 2.5rem;

	width: 100%;
}

.auth-form-group {
	gap: 0.25rem;
}

.auth-form-actions {
	flex-direction: column;

	width: 100%;
}

.auth-links {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-evenly;
	align-items: center;
	gap: 1.25rem;

	width: 100%;
}

.login-button {
	width: 100%;
	padding: 1rem;
	border-radius: var(--pill);

	font-weight: 700;
	line-height: 1.375rem;

	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.login-button:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-soft);
}

.signup-button {
	width: 100%;

	padding: 1rem;
	border-radius: var(--pill);

	font-weight: 700;
	line-height: 1.375rem;

	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.signup-button:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-soft);
}

.auth-footer {
	color: var(--blue-gray-500);
	font-size: 0.875rem;
	line-height: 1rem;
}

@media screen and (min-width: 768px) {
}
