/* Login Page Styles */
body {
    font-family: 'Inter', sans-serif;
    background: #000000; /* Dark black background */
    color: #cdccd5; /* Default text color */
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: hidden; /* Prevent vertical scrolling */
    display: flex; /* Center content */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    min-height: 100vh; /* Full viewport height */
    padding-bottom: 60px; /* Add padding to the bottom to make space for the fixed footer */
}

.login-logo {
    position: absolute;
    top: 20px; /* Adjust as needed for spacing from top */
    left: 20px; /* Adjust as needed for spacing from left */
    z-index: 10;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.login-logo .logo-img {
    width: 48px; /* Increase size */
    height: 48px; /* Increase size */
}

.login-logo .logo-text {
    font-size: 1.5rem; /* Increase size */
    color: #fff !important;
    font-weight: bold;
    transition: text-shadow 0.3s ease; /* Add transition for glow */
}

.login-logo:hover .logo-img {
    transform: scale(1.1) rotate(5deg); /* Match main page logo hover */
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5)); /* Match main page logo hover */
}

.login-logo:hover .logo-text {
    color: #fff !important; /* Match main page logo hover */
    text-shadow: 0 0 16px #fff, 0 0 32px #fff; /* Match main page logo hover */
    background: none; /* Match main page logo hover */
    -webkit-background-clip: initial; /* Match main page logo hover */
    -webkit-text-fill-color: initial; /* Match main page logo hover */
}

.login-container {
    width: 100%;
    max-width: 400px; /* Max width for the login box */
    padding: 20px;
    margin: 40px auto; /* Add top and bottom margin and center horizontally */
}

.login-box {
    background: #000; /* Black background for the box */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3),
                0 0 20px rgba(255, 255, 255, 0.2),
                0 0 30px rgba(255, 255, 255, 0.1);
    color: #fff; /* White text inside the box */
}

.login-box h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff; /* White title */
}

.login-box form label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
    color: #cdccd5; /* Label color */
}

.login-box form input[type="text"],
.login-box form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #1a1a1a; /* Darker background for inputs */
    color: #fff; /* White text in inputs */
    box-sizing: border-box; /* Include padding in width */
}

.login-box form button[type="submit"] {
    background: #000; /* Black button background */
    color: #fff; /* White button text */
    border: 2px solid #fff; /* White border */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3); /* White glow */
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-box form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.4),
                0 0 24px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #000; /* Ensure background is black */
    padding: 0 20px; /* Padding from screen edges */
    box-sizing: border-box; /* Include padding in width */
}

.footer .container {
    /* This container might not be needed with fixed positioning on footer */
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between; /* Put space between copyright and links */
    align-items: center; /* Vertically center items */
    padding: 20px 0; /* Vertical padding */
    width: 100%; /* Ensure it takes full width within the footer's padding */
    box-sizing: border-box; /* Include padding in width */
    flex-wrap: wrap; /* Allow content to wrap if necessary */
}

.footer-bottom div {
    color: white; /* Ensure copyright text is white */
    margin-right: 20px; /* Add some space between copyright and links */
    flex-shrink: 0; /* Prevent copyright from shrinking */
}

.footer-bottom .footer-links {
    display: flex; /* Make the links container a flex container */
    flex-shrink: 1; /* Allow links container to shrink */
    flex-wrap: wrap; /* Allow links to wrap if necessary */
    justify-content: flex-end; /* Align links to the right within their container */
    align-items: center; /* Vertically center links within their container */
}

.footer-bottom .footer-links a {
    color: white;
    margin-left: 8px; /* Space between links */
    text-decoration: none; /* Remove underline */
    font-size: 0.9rem; /* Reduced font size */
}

.footer-bottom .footer-links a:last-child {
    margin-right: 0; /* Remove right margin on the last link */
}

.footer-bottom .footer-links a:hover {
    text-decoration: underline; /* Add underline on hover */
} 
