body {
	background-color: DarkSlateGray;
}

/* centre horizontally and vertically */
div.container {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%)
}


h1 {
	color: #C1F0C1;
	font-family: verdana;
	font-size: 10vw;
}

h2 {
    color: #C1F0C1; 
    font-family: verdana;
    font-size: 2vw; 
}

/* Position the login link at the top right */
div.top-right {
	position: absolute;
	top: 10px;
	right: 10px;
	font-family: verdana;
	font-size: 1em;
}

div.top-right a {
	color: #C1F0C1;
	text-decoration: none;
}


div.form-group {
    margin-bottom: 15px;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

input[type="submit"]:hover {
    opacity: 0.8;
}

label {
    font-family: Verdana, sans-serif;
    color: #C1F0C1;
    display: block; /* This makes each label start on a new line */
    margin-top: 10px; /* Spacing above each label */
}

#snake-link {
    position: fixed;
    right: 10px;
    bottom: 10px;
    font-size: 2em;
    text-decoration: none;
}


input[type="button"] {
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

input[type="button"]:hover {
    opacity: 0.8;
}

.cba-link h2 {
    text-align: center;
    margin-top: 20px;
    color: #C1F0C1; 
    font-family: verdana;
    font-size: 2vw; 
}

.cba-link h2 a {
    color: #C1F0C1; /* Color for the link */
    text-decoration: none; /* Removes underline from the link */
}

.cba-link h2 a:hover {
    text-decoration: underline; /* Adds underline on hover for better UX */
}

/* Container for the progress bar */
.progress-container {
    text-align: center;
    background-color: black;
    color: white;
    padding: 10px;
    width: 600px;
    margin: 20px auto;
    border: 2px solid red;
    position: absolute;
	top: 65%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%)
  }
  
  /* Header text */
  .progress-header {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: verdana;
  }
  
  /* Progress bar background */
  .progress-bar {
    background-color: white;
    width: 100%;
    height: 30px;
    border: 2px solid red;
    position: relative;
  }
  
  /* Progress bar fill */
  .progress-fill {
    background-color: red;
    width: 0%; /* Initial progress */
    height: 100%;
    transition: width 0.5s ease;
  }
