.container {
	display: flex;
	justify-content: center;
}

.container-button {
	display: flex;
	justify-content: center;
	align-items: center;	
	min-width: 350px;
	border: 1px solid #888888;
	border-radius: 8px;
	height: 250px;
}


.google-button {
	height: 40px;
	border-width: 0;
	background: white;
	color: #737373;
	border-radius: 5px;
	white-space: nowrap;
	box-shadow: 1px 1px 0px 1px rgba(0,0,0,0.2);
	transition-property: background-color, box-shadow;
	transition-duration: 150ms;
	transition-timing-function: ease-in-out;
	padding: 0;

	&:active {
		background-color: #e5e5e5;
		box-shadow: none;
		transition-duration: 10ms;
	}
}

.google-button:hover{
	box-shadow: 1px 4px 5px 1px rgba(0,0,0,0.4);
}
	
.google-button__icon {
	vertical-align: middle;
	display: inline-block;
	margin: 8px 0 8px 8px;
	width: 18px;
	height: 18px;
	box-sizing: border-box;
}

.google-button__icon--plus {
	width: 27px;
}

.google-button__text {
	display: inline-block;
	vertical-align: middle;
	padding: 0 24px;
	font-size: 14px;
	font-weight: bold;
	font-family: 'Roboto',arial,sans-serif;
}