/* Login page button colors - customize these to change button colors */

/* Main login button (the large "Login" or "Enter Now" button on the intro page) */
.intro_login_btn {
	background: #030b0d; /* Change this color - currently cyan */
	color: #fff;
}

.intro_login_btn:hover {
	background: #3d3d3d; /* Hover color - slightly darker */
}

/* Guest login button */
.intro_guest_btn {
	background: #222; /* Change this color - currently dark gray */
	color: #fff;
}

.intro_guest_btn:hover {
	background: #333; /* Hover color - slightly lighter */
}

/* Login modal button (the button inside the login popup/form) */
#login_form_box .theme_btn {
	background: #03add8; /* Change this color - currently cyan */
	color: #fff;
}

#login_form_box .theme_btn:hover {
	background: #0288a8; /* Hover color - slightly darker */
}