/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #0d0d0d;
    color: #ffffff;
    overflow-x: hidden;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    transition: background-color 0.3s;
}

.navbar-logo img {
    height: auto;
    max-height: 100px;
    width: auto;
    margin-right: 10px;
}

.navbar-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.navbar-links li {
    list-style: none;
}

.navbar-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.05);
    transition: color 0.3s, background-color 0.3s;
}

.navbar-links a:hover {
    color: #0d0d0d;
    background-color: #ff007a;
}

.email-container {
    display: flex;
}

.email-button {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.email-button img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.email-button:hover {
    background-color: #0056b3;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 11;
    position: relative;
}

.nav-toggle span {
    background-color: #ffffff;
    height: 3px;
    width: 25px;
    margin: 3px;
    transition: all 0.3s ease-in-out;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Login Container */
.login-container {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin: auto;
    margin-top: 268px;

}


.login-container h2 {
    font-size: 24px;
    color: #0d0d0d;
    margin-bottom: 20px;
}

.login-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #ffffff;
    color: #000;
    font-size: 16px;
}

.login-container input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.login-container button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-container button:hover {
    background-color: #0056b3;
}

#errorMessage {
    margin-top: 10px;
    font-size: 14px;
    color: red;
    display: none;
}

/* Footer (Optional for Branding) */
footer {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #ffffff;
    text-align: center;
}
