body.login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #0A3B61, #002040); /* Gradient from top-left to bottom-right */
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0A3B61;
}

a {
    color: #002040 !important;
}

a:active {
    color: #002040 !important;
}

a:visited {
    color: #277bb3 !important;
}

a:hover {
    color: #277bb3 !important;
}

#content {
    width: 96%;
	min-height: 780px;
    margin-left: auto;
    margin-right: auto;
	margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 1rem;
	display: flex;
    flex-direction: column;
}

#footer {
    max-width: 1100px;
    margin: 0 auto 4rem auto; /* Centers it and adds 4rem bottom margin */
    padding: 1rem;
    font-size: 10px;
    text-transform: uppercase;
    color: #f7f7f7;
    text-align: center; /* Ensures content inside is centered */
}


#content p,h2 {
    color: #003366;
    text-align: center;
}

.center-container {
    display: flex;
    justify-content: center; /* Centers the select horizontally */
    align-items: center; /* Optional: Centers vertically if needed */
    width: 100%; /* Ensures it takes full width */
}

#welcomemessage {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
}

.accordion-header {
    background-color: #277bb3;
    color: #ffffff;
    padding: 0.8rem 1.5rem !important;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    cursor: pointer;
}

.accordion input:checked ~ .accordion-body,
.accordion[open] .accordion-body {
  max-height: none !important;
  border: 2px solid #277bb3;
  background-color: #f7f7f7;
}

.accordion input:checked ~ .accordion-header {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.accordion-body ul {
    list-style: none; /* Remove bullets */
    padding-left: 10px; /* Remove left indentation */
    margin-left: 0; /* Ensure no margin */
}

select#accountSelect {
    display: block;
    width: 100%;
    max-width: 400px;
    padding: 10px 15px;
    font-size: 16px;
    color: #333;
    background: #f8f9fa;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    appearance: none; /* Remove default browser styling */
    cursor: pointer;
    margin-bottom: 2rem;
}

/* Add a dropdown arrow */
select#accountSelect {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23888' width='20px' height='20px'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}

/* Hover effect */
select#accountSelect:hover {
    border-color: #888;
}

/* Focus effect */
select#accountSelect:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Style the dropdown options */
select#accountSelect option {
    padding: 10px;
    font-size: 16px;
}



/* Medium Devices (Tablets) */
@media (min-width: 601px) and (max-width: 1024px) {
    #content {
        max-width: 580px;
        padding: 1.5rem;
    }
    
}

/* Large Devices (Desktops) */
@media (min-width: 1025px) {
    #content {
        max-width: 880px;
        padding: 2rem;
    }
}




/* Login Form Container */
.login-container {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.88);
    text-align: center;
    width: 420px;
}

/* Form Title */
h2 {
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.25rem;
}

/* Input Fields */
input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Submit Button */
button {
    width: 100%;
    padding: 12px;
    background-color: #17a2b8; /* Blue button */
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background-color: #277bb3;
}

/* Signup Link */
.signup-link {
    margin-top: 15px;
    font-size: 14px;
    color: #eee;
}

.signup-link a {
    color: #17a2b8;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

#header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 0.8rem 2rem;
    margin-bottom: 3rem;
}

/* Bootstrap-style margin-bottom aliases using Spectre spacing */
.mb-0  { margin-bottom: 0 !important; }
.mb-1  { margin-bottom: 0.25rem !important; }  /* Spectre m-b-1 */
.mb-2  { margin-bottom: 0.5rem !important; }   /* Spectre m-b-2 */
.mb-3  { margin-bottom: 1rem !important; }     /* Spectre m-b-3 */
.mb-4  { margin-bottom: 1.5rem !important; }   /* Spectre m-b-4 */
.mb-5  { margin-bottom: 3rem !important; }     /* Optional larger spacing */
