html,
body{
	height: 100%;
	background-color: gainsboro;
	overflow-y: auto;
}

body{
	font-family: 'Roboto', sans-serif;
}

img {
    display: block;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.g-recaptcha > div:first-of-type {
	margin: 0 auto;
}

.div-signin {
	display: flex;
	align-items: center;
	padding: 20px;
	max-width: 600px;
}

.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: #000051;
	color: #FFF;
	text-align: center;
}

.abio-text {
	color: #FFF;
}

.abio-btn{
	background-color: #0CBA84;
	color: #FFF;
	border-radius: 1rem;
}

/* Social Bar */
.social-bar{
	position: fixed;
	right: 0;
	top: 35%;
	font-size: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	z-index: 100;
}

.icon {
	color: white;
	text-decoration: none;
	padding: .7rem;
	display: flex;
	transition: all .5s;
}

.icon-facebook{
	background: #2E406E;
	border-radius: 1rem 0 0 0;
}

.icon-twitter{
	background: #339DC5;
	border-radius: 0 0 0 1rem;
}

.icon-instagram{
	background: #E1306C;
}

.icon:hover{
	padding-right: 3rem;
	border-radius: 1rem 0 0 1rem;
	box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.42);
	text-decoration: none;
	color: white;
}

/* Fin Social Bar */