/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-image: url("38alXMMm.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0;
    overflow-x: hidden; /* Ensure no horizontal overflow */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header {
    text-align: center;
    color: #FFFFFF; /* White text color for better contrast */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Add text shadow for outline effect */
    position: relative; /* Ensure the header is above the background overlay */
    z-index: 1;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.site-title {
    font-size: 3rem;
    margin: 0;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.5rem;
    margin: 10px 0 0;
}

.top-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000; /* Ensure menu is above other content */
}

.menu-button {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 20px; /* Add margin between buttons */
}

.container {
    width: 100%; /* Make the container full width */
    max-width: 800px; /* Limit the maximum width */
    padding: 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 1); /* Semi-transparent background color */
    border-radius: 10px; 
    color: white; /* Text color */
    position: relative; /* Ensure the container is above the background overlay */
    z-index: 1;
    margin-top: 40px; /* Add margin to separate from header */
}

.login-button {
    display: block;
    width: 100%; /* Make the button full width */
    padding: 20px;
    margin: 10px 0; 
    font-size: 1.5rem;
    color: white; 
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: #0056b3;
    text-decoration: none; 
}

/* Login Form */
.login-form {
    display: none;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    margin-top: 20px;
}

.standard-form {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

.standard-form h2 {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.standard-form label {
    display: block;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.standard-form input {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.standard-form button {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.standard-form button:hover {
    background-color: #0056b3;
    text-decoration: none; 
}

.standard-form p {
    margin-top: 10px;
    color: #FFFFFF;
}

.standard-form p a {
    color: #FFFFFF;
    text-decoration: underline;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    max-height: 80%;
    overflow-y: auto;
}

.popup-content h2 {
    margin-top: 0;
    color: #333333;
}

.popup-content p {
    color: #333333;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    cursor: pointer;
    color: #333333;
}
