<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* /css/style.css */

/* Global Reset &amp; Base Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body { /* General body for the whole site, can be overridden */
    font-family: 'Poppins', sans-serif;
    background-color: #0A0f2a;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent minor horizontal overflows */
}

/* Header Styles (Shared across login.html, register.html, index.html, about.html) */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #252B3B;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo img {
    height: 40px;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    padding: 5px 0;
}

nav a:hover,
nav a.active {
    color: #ffd700;
}

/* Styles for the BODY of Authentication Pages (Login, Register, 2FA, Profile) */
body.auth-page {
    min-height: 100vh;
    display: block; /* Changed from flex to block to stack header and content vertically */
    padding-top: 120px; /* Increased to account for fixed header height */
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

/* Common container for login, register, 2fa, and profile forms */
.auth-container {
    background-color: #1c253F;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    width: 400px;
    max-width: 90%;
    text-align: center;
    margin: 0 auto; /* Center the container horizontally */
}

.auth-container h2 {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 20px;
}

.auth-container input[type="email"],
.auth-container input[type="password"],
.auth-container input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #3A3F4B;
    border: none;
    color: #FFFFFF;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.auth-container button {
    width: 100%;
    padding: 10px;
    background-color: #ffd700;
    border: none;
    color: #0A0f2a;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}

.auth-container button:hover {
    background-color: #d4af37;
}

.auth-container .error {
    color: #FF5555;
    font-size: 14px;
    margin-top: 10px;
    min-height: 1em;
}

.auth-container p {
    margin-top: 20px;
    color: #b0b4c1;
    font-size: 14px;
}

.auth-container p a {
    color: #ffd700;
    text-decoration: none;
}

.auth-container p a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for Header and Auth Pages */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    body.auth-page {
        padding-top: 180px; /* Adjusted for stacked header */
    }

    .auth-container {
        padding: 20px;
    }
}</pre></body></html>