* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #0275d8;
}

/* Header Styles */
.header {
    background-color: #9c9c9c;
    padding: 10px 0;
    border-bottom: 1px solid #9c9c9c;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 300px;
    height: 56px;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
}

.language-selector {
    font-size: 14px;
    margin-right: 20px;
    cursor: pointer;
    color: #fff;
}

.language-selector span {
    margin-right: 5px;
}

.auth-links a {
    font-size: 14px;
    color: #fff;
    margin-right: 20px;
}

.search-button {
    cursor: pointer;
    color: #fff;
}

/* Main Navigation */
.main-nav {
    background-color: #9c9c9c;
    color: white;
    padding: 15px 0;
    border-top: 1px solid #9c9c9c;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.system-title {
    font-size: 18px;
    font-weight: bold;
}

.breadcrumb {
    text-align: right;
    font-size: 14px;
}

.breadcrumb a {
    color: white;
}

/* Main Content */
.main-content {
    padding: 40px 0;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.login-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: normal;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    margin-right: 5px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 450px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.modal-content h2 {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.modal-content input[type="text"],
.modal-content input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    background-color: #f0f8ff;
}

.modal-content input::placeholder {
    color: #888;
}

.modal-content button[type="submit"] {
    width: 100%;
    background-color: #0098db;
    color: white;
    border: none;
    padding: 12px 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
}

.modal-content button[type="submit"]:hover {
    background-color: #0088cc;
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
    background-color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.close:hover {
    color: #333;
}

/* Checkbox and Remember Me */
.remember-me {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
    text-align: left;
}

.remember-me input[type="checkbox"] {
    margin-right: 8px;
}

.remember-me label {
    font-size: 14px;
    color: #555;
}

/* Forgot Password Link */
.forgot-password {
    text-align: right;
    margin-bottom: 20px;
}

.forgot-password a {
    color: #0098db;
    font-size: 14px;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}
/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    margin-top: auto;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer-logo {
    width: 350px;
    margin-bottom: auto;
}

.footer h2 {
    color: #000000;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 10px;
}

.footer h3 {
    color: #000000;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-info {
    width: 45%;
}

.campus-info {
    margin-top: 20px;
}

.campus-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.campus-details p {
    margin-bottom: 5px;
    color: #555;
    font-size: 14px;
}

.copyright {
    text-align: center;
    color: #777;
    font-size: 12px;
    padding: 15px 0;
    background-color: #f0f2f5;
}


.login-button {
    width: 100%;
    padding: 12px;
    background-color: #0275d8;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #025aa5;
}

.cookie-notice {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    margin-top: auto;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer-logo {
    width: 350px;
    margin-bottom: auto;
}

.footer h2 {
    color: #000000;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 10px;
}

.footer h3 {
    color: #000000;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-info {
    width: 45%;
}

.campus-info {
    margin-top: 20px;
}

.campus-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.campus-details p {
    margin-bottom: 5px;
    color: #555;
    font-size: 14px;
}

.copyright {
    text-align: center;
    color: #777;
    font-size: 12px;
    padding: 15px 0;
    background-color: #f0f2f5;
}

/* Error message */
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: none;
}

/* Sample accounts display */
.sample-accounts {
    margin-top: 20px;
    padding: 15px;
    background-color: #e9f7fe;
    border-radius: 4px;
    font-size: 14px;
}

.sample-accounts h3 {
    margin-bottom: 10px;
    color: #0275d8;
    font-size: 16px;
}

.sample-accounts ul {
    list-style-type: none;
    padding-left: 0;
}

.sample-accounts li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.sample-accounts li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0275d8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-right {
        margin-top: 10px;
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .breadcrumb {
        text-align: left;
        margin-top: 5px;
    }
    
    .footer-campuses {
        flex-direction: column;
    }
    
    .campus {
        margin-bottom: 20px;
    }
    
    .logo {
        width: 220px;
        height: auto;
    }
    
    .footer-logo-img {
        width: 280px;
        height: auto;
    }
}