.ps-google-login-wrap {
	margin: 12px 0;
}

.google-auth-container{
  display: flex;
  justify-content: center;
}

.ps-google-auth-button {
	display: inline-flex;
	align-items: center;
  justify-content: center;
  min-width: 70%;
	gap: 8px;
	padding: 1rem;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #e5eff9;
	color: #006EDC;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
}

.ps-google-auth-button:hover {
	border-color: #ccc;
	background: rgba(0, 110, 220, .15);
}

.ps-google-auth-button:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.ps-google-icon svg {
	display: inline-block;
	vertical-align: middle;
}

.ps-google-spinner {
	animation: psGoogleSpin 1s linear infinite;
	transform-origin: 50% 50%;
}

@keyframes psGoogleSpin {
	0%   { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.ps-google-login-wrap--top{
	margin: 0 0 16px 0;
}

.ps-gl-divider{
	display:flex;
	align-items:center;
	gap:12px;
	margin: 18px 30px;
}

.ps-gl-divider__line{
	flex:1;
	height:1px;
	background:#dcdfe4;
	display:block;
}

.ps-gl-divider__text{
	font-size:13px;
	line-height:1;
	color:#6b7280;
	white-space:nowrap;
}