/* ---------------------------------------------------------------------------
   GERASOM - Botões de login social (Google / Microsoft)
   Carregado só nas páginas "entrar" e "registro" (via $css no index.php).
   --------------------------------------------------------------------------- */

.social-login {
	margin-bottom: 26px;
}

.social-login .social-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;

	width: 100%;
	padding: 13px 20px;
	margin-bottom: 12px;

	background-color: #ffffff;
	border: 1px solid #dcdfe3;
	border-radius: 50px;

	color: #3c4043;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;

	-webkit-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.social-login .social-btn:hover,
.social-login .social-btn:focus {
	background-color: #f7f8fa;
	border-color: #c4c9cf;
	color: #3c4043;
	text-decoration: none;
	-webkit-box-shadow: 0 2px 8px rgba(0,0,0,.10);
	box-shadow: 0 2px 8px rgba(0,0,0,.10);
}

/* Acessibilidade: foco visível para quem navega por teclado. */
.social-login .social-btn:focus-visible {
	outline: 3px solid #1a73e8;
	outline-offset: 2px;
}

.social-login .social-btn:active {
	-webkit-transform: translateY(1px);
	-ms-transform: translateY(1px);
	transform: translateY(1px);
}

.social-login .social-btn svg {
	width: 20px;
	height: 20px;
	margin-right: 12px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

/* Separador "ou" entre o social e o formulário de e-mail/senha */
.social-divisor {
	position: relative;
	text-align: center;
	margin: 26px 0;
}

.social-divisor:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #e2e5e9;
}

.social-divisor span {
	position: relative;
	display: inline-block;
	padding: 0 16px;
	background-color: #ffffff;
	color: #8b9199;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .5px;
}

/* Aviso de conta já vinculada a um provedor */
.social-aviso {
	font-size: 14px;
	color: #797979;
	margin-top: 4px;
}

@media (max-width: 480px) {
	.social-login .social-btn {
		font-size: 15px;
		padding: 12px 16px;
	}
	.social-divisor {
		margin: 20px 0;
	}
}
