.cr-google-auth {
	margin: 16px 0;
	width: 100%;
}

.cr-google-auth--header {
	margin: 0;
	width: auto;
}

.cr-google-auth__separator {
	align-items: center;
	color: #6b7280;
	display: flex;
	font-size: 13px;
	font-weight: 500;
	gap: 12px;
	justify-content: center;
	line-height: 1;
	margin: 16px 0 12px;
	text-align: center;
	width: 100%;
}

.cr-google-auth__separator::before,
.cr-google-auth__separator::after {
	background: #d1d5db;
	content: "";
	display: block;
	flex: 1 1 auto;
	height: 1px;
	min-width: 32px;
}

.cr-google-auth .cr-google-auth__button,
.cr-google-auth__button {
	align-items: center;
	background: #fff;
	border: 1px solid #dadce0;
	border-radius: 6px;
	box-shadow: none;
	box-sizing: border-box;
	color: #3c4043;
	display: inline-flex;
	font-size: 14px;
	font-weight: 600;
	gap: 10px;
	justify-content: center;
	line-height: 1.2;
	min-height: 44px;
	padding: 14px 16px;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
	width: 100%;
}

.cr-google-auth.is-loading .cr-google-auth__button,
.cr-google-auth.is-disabled .cr-google-auth__button,
.cr-google-auth.is-connected .cr-google-auth__button {
	cursor: not-allowed;
	opacity: 0.72;
	pointer-events: none;
}

.cr-google-auth.is-loading .cr-google-auth__button::after {
	animation: cr-google-auth-spin 800ms linear infinite;
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 999px;
	content: "";
	height: 14px;
	width: 14px;
}

.cr-google-auth.is-connected .cr-google-auth__button {
	background: #f0fdf4;
	border-color: #bbf7d0;
	color: #166534;
}

.cr-google-auth--header .cr-google-auth__button {
	border-color: var(--cr-app-border, #dadce0);
	border-radius: var(--cr-app-radius, 8px);
	color: var(--cr-app-text, #3c4043);
	min-height: 42px;
	padding: 10px 12px;
	width: auto;
}

.cr-google-auth--header .cr-google-auth__button:hover,
.cr-google-auth--header .cr-google-auth__button:focus-visible {
	border-color: var(--cr-app-primary, #2271b1);
	color: var(--cr-app-primary, #2271b1);
}

.cr-google-auth .cr-google-auth__button:hover,
.cr-google-auth .cr-google-auth__button:focus,
.cr-google-auth__button:hover,
.cr-google-auth__button:focus {
	background: #f8fafd;
	border-color: #c6cbd1;
	color: #202124;
	text-decoration: none;
}

.cr-google-auth .cr-google-auth__button:focus-visible,
.cr-google-auth__button:focus-visible {
	box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.24);
	outline: 2px solid transparent;
	outline-offset: 2px;
}

.cr-google-auth__icon {
	display: inline-flex;
	flex: 0 0 auto;
	height: 18px;
	width: 18px;
}

.cr-google-auth__icon svg {
	display: block;
	height: 18px;
	width: 18px;
}

.cr-google-auth__label {
	display: inline-block;
	white-space: normal;
}

@media (min-width: 640px) {
	.cr-google-auth .cr-google-auth__button,
	.cr-google-auth__button {
		width: auto;
	}
}

@keyframes cr-google-auth-spin {
	to {
		transform: rotate(360deg);
	}
}
