/* DVT Users & Challenges Addon – Auth Buttons block
 *
 * Valores retirados do Figma (node 620:6566, Header): botão "Aceder"
 * fundo #222627, botão "Registar" fundo #008851, ambos 44px altura,
 * rounded-40, fonte de marca 20px maiúsculas com text-shadow subtil.
 * Mesma fonte de marca já usada no resto do plugin (GoodDogNewW00-Regular)
 * — ver menu-block.css.
 */

@font-face {
	font-family: 'GoodDogNewW00-Regular';
	src: url( '../fonts/GoodDogNewW00-Regular.ttf' ) format( 'truetype' );
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

.dvtuca-auth-buttons {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
}

.dvtuca-auth-buttons--align-left {
	justify-content: flex-start;
}

.dvtuca-auth-buttons--align-center {
	justify-content: center;
}

.dvtuca-auth-buttons--align-right {
	justify-content: flex-end;
}

.dvtuca-auth-buttons__button {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 6px 26px;
	border: 2px solid transparent;
	border-radius: 40px;
	font-family: 'GoodDogNewW00-Regular', sans-serif;
	font-size: 20px;
	line-height: 32px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	text-shadow: 0 2px 0 rgba( 0, 0, 0, 0.15 );
	color: #ffffff;
	white-space: nowrap;
}

.dvtuca-auth-buttons__button--login {
	background: #222627;
	box-shadow: 0 10px 15px rgba( 34, 38, 39, 0.4 );
}

.dvtuca-auth-buttons__button--register {
	background: #008851;
	box-shadow: 0 10px 10px rgba( 0, 136, 81, 0.3 );
}
