@charset "UTF-8";
/* CSS Document */

/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,600;0,6..12,700;1,6..12,300;1,6..12,400;1,6..12,600;1,6..12,700&display=swap');


/* Set the background image and its properties */

body {
	font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
    font-style: normal;
    margin: 0;
    padding: 0;
	background-color: #000000;
    background-image: url('../images/main-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh; /* Ensure the background image covers the entire viewport */
}



a {
    color: #ffffff;
}

a.black:link,
a.black:visited,
a.black:active { color: #000000; text-decoration: none; }
a.black:hover { color: #000000; text-decoration: underline; }


/* Center the logo horizontally and vertically */
#logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
	padding: 1rem 0rem 2rem 0rem;
	width: 80%;
}

.logo {
     max-width: 60% /* Set the size of your logo as on mobile devices */
}

@media screen and (min-width: 600px) {
.logo {
   max-width: 250px; /* Adjust the size of your logo as needed on tablet/desktop 600px wide and above */
	}
}


#strapline {
    color: #ffffff;
    font-size: 1.4rem;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
	line-height: 1.3;
}

/* Style the gold buttons */
.goldbutton {
	font-family: 'Nunito Sans', sans-serif;
    display: inline-block;
    padding: 8px 65px;
    background-color: #6b6b6b;
    color: #ffffff;
    font-size: 1.4rem;
    border-radius: 25px;
	border: none;
    text-decoration: none;
    margin-top: 10px;
    background: rgb(249, 245, 120);
    background: -moz-linear-gradient(210deg, rgba(249, 245, 120, 1) 0%, rgba(249, 245, 120, 1) 25%, rgba(183, 132, 4, 1) 50%, rgba(237, 195, 33, 1) 75%, rgba(237, 195, 33, 1) 100%);
    background: -webkit-linear-gradient(210deg, rgba(249, 245, 120, 1) 0%, rgba(249, 245, 120, 1) 25%, rgba(183, 132, 4, 1) 50%, rgba(237, 195, 33, 1) 75%, rgba(237, 195, 33, 1) 100%);
    background: linear-gradient(210deg, rgba(249, 245, 120, 1) 0%, rgba(249, 245, 120, 1) 25%, rgba(183, 132, 4, 1) 50%, rgba(237, 195, 33, 1) 75%, rgba(237, 195, 33, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f9f578", endColorstr="#edc321", GradientType=1);
}

.goldbutton:hover {
    background: rgb(249, 245, 120);
    background: -moz-linear-gradient(210deg, rgba(249, 245, 120, 1) 0%, rgba(183, 132, 4, 1) 48%, rgba(237, 195, 33, 1) 82%, rgba(237, 195, 33, 1) 100%);
    background: -webkit-linear-gradient(210deg, rgba(249, 245, 120, 1) 0%, rgba(183, 132, 4, 1) 48%, rgba(237, 195, 33, 1) 82%, rgba(237, 195, 33, 1) 100%);
    background: linear-gradient(210deg, rgba(249, 245, 120, 1) 0%, rgba(183, 132, 4, 1) 48%, rgba(237, 195, 33, 1) 82%, rgba(237, 195, 33, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f9f578", endColorstr="#edc321", GradientType=1);
}

#register-interest {
    margin-top: 1rem;
}

#login-box {
	background-color: white; 
	padding-top: 35px; 
	border-radius: 7px; 
	display: block;
    width: 400px;
    max-width: 85%;
    max-height: 100%;
    position: fixed;
    z-index: 100;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
	padding: 2rem 2rem 2rem 2rem;
}

.logintextbox {
	padding: 15px;
}

#cornerlogo {
    z-index: 11000;
    width: 40px;
    position: fixed;
    top: 9px;
    left: 11px;
}

@media screen and (max-width: 600px) {
	#cornerlogo {
		width: 45px;
		position: absolute;
		left: 50%;
		top: 45px;
		transform: translate(-50%, -50%);
	}
}