/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: #0066cc;
}

hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 30px 0;
}

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

.container, .header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.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;
}

/* Banner Styles */
.banner {
    background-color: #9c9c9c;
    color: white;
    padding: 15px 0;
}

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

.banner h2 {
    font-size: 18px;
    font-weight: normal;
    text-transform: uppercase;
}

.breadcrumb {
    color: white;
    font-size: 14px;
}

.breadcrumb a {
    color: white;
    margin: 0 5px;
}

/* Main Content Styles */
main {
    padding: 30px 0;
    flex: 1;
}

.main-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.password-recovery-section {
    background-color: white;
    padding: 0;
    border-radius: 0;
}

.instructions {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #555;
}

.search-section h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: normal;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.button-container {
    margin-top: 15px;
}

button.search-button {
    background-color: #0098db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

button.search-button:hover {
    background-color: #0088cc;
}

.search-divider {
    border-top: 1px solid #ddd;
    margin: 30px 0;
}

/* Search Sections */
.search-title {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: normal;
}
/* 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;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .banner-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .breadcrumb {
        margin-top: 10px;
    }
    
    .campus-container {
        flex-direction: column;
    }
    
    .campus-info {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .modal-content {
        width: 90%;
        max-width: 400px;
    }
}