/* Zorem Google Login Button Styles */

/* Separator */
.zgl-separator {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 1.5rem 0;
}

.zgl-separator::before,
.zgl-separator::after {
	content: '';
	flex: 1;
	height: 1px;
	background-color: #e2e8f0;
}

.zgl-separator span {
	font-size: 0.875rem;
	font-weight: 500;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Google Button */
.zgl-google-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	width: 100%;
	padding: 0.875rem 1rem;
	border: 1px solid #e2e8f0;
	border-radius: 1rem;
	background-color: #fff;
	color: #334155;
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
}

.zgl-google-btn:hover {
	background-color: #f8fafc;
	border-color: #cbd5e1;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	color: #1e293b;
	text-decoration: none;
}

.zgl-google-btn:active {
	transform: scale(0.98);
}

.zgl-google-icon {
	flex-shrink: 0;
}

/* Error notice */
.zgl-error {
	margin-bottom: 1rem;
	padding: 0.875rem 1rem;
	border-radius: 0.75rem;
	background-color: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
	font-size: 0.875rem;
	font-weight: 500;
}
