:root {
	--grey: #F1F0F6;
	--dark-grey: #8D8D8D;
	--light: #fff;
	--dark: #000;
	--green: #81D43A;
	--light-green: #E3FFCB;
	--blue: #1775F1;
	--light-blue: #D0E4FF;
	--dark-blue: #0C5FCD;
	--red: #FC3B56;
	--gold-color: #FFD700;

}

body {
	background: var(--grey);
}

/* Gold buttons with black text */
.btn-gold {
	background-color: var(--gold-color) !important;
	color: #000 !important;
	border: none !important;
  }
  .btn-gold:hover {
	background-color: #e8c100 !important;
	color: #000 !important;
  }

#loginContainer {
	max-width: 400px;
  }
  
  @media (max-width: 576px) {
	#loginContainer {
	  max-width: 280px;
	}
  }

.login-text{
	color: var(--gold-color);
}
  


