﻿.btn-authentication {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0.85rem 1.5rem;
	background: #AABBFF;
	border: none;
	color: #555;
	border-radius: 50px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	transition: background 0.18s, color 0.18s, transform 0.15s, box-shadow 0.18s;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	cursor: pointer;
}

	.btn-authentication:hover {
		background: #2255FF;
		border-color: #2255FF;
		color: #fff;
		transform: translateY(-2px);
		box-shadow: 0 8px 24px rgba(34, 85, 255, 0.3);
	}
