.mgl-login-container {
	margin-bottom: 20px;
	text-align: center;
}

.mgl-google-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	color: #757575;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 0;
	text-decoration: none;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 14px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s, box-shadow 0.3s;
	width: 100%;
	max-width: 300px;
	overflow: hidden;
}

.mgl-btn-icon {
	background: #fff;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-right: 1px solid #ddd;
}

.mgl-google-button span {
	padding: 10px 16px;
	flex-grow: 1;
	text-align: center;
}

/* Dark Theme */
.mgl-btn-dark {
	background-color: #1a1a1a;
	color: #fff;
	border: 1px solid #1a1a1a;
}

.mgl-btn-dark .mgl-btn-icon {
	border-right: 1px solid #333;
	border-radius: 2px 0 0 2px;
}

.mgl-btn-dark:hover {
	background-color: #333;
	color: #fff;
}

/* Blue Theme */
.mgl-btn-blue {
	background-color: #4285f4;
	color: #fff;
	border: 1px solid #4285f4;
}

.mgl-btn-blue .mgl-btn-icon {
	border-right: 1px solid #4285f4;
	border-radius: 2px 0 0 2px;
}

.mgl-btn-blue:hover {
	background-color: #357ae8;
	color: #fff;
}

.mgl-google-button:hover {
	background-color: #f8f8f8;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	color: #333;
}

.mgl-google-button img {
	width: 18px;
	height: 18px;
	margin-right: 10px;
}

.mgl-separator {
	margin: 15px 0;
	position: relative;
	text-align: center;
	color: #777;
	font-size: 12px;
}

.mgl-separator::before,
.mgl-separator::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 40%;
	height: 1px;
	background-color: #e0e0e0;
}

.mgl-separator::before {
	left: 0;
}

.mgl-separator::after {
	right: 0;
}