/* General Styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: #121212; /* Dark background */
    color: #fff; /* White text */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Login Section */
#login-section {
    text-align: center;
    width: 100%;
}

.login-container {
    background: #1e1e1e; /* Slightly lighter dark for contrast */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 400px;
    margin: auto;
}

h1 {
    font-size: 2rem;
    color: #00aaff; /* Highlighted title */
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    color: #bbb; /* Subtle gray for descriptions */
    margin-bottom: 20px;
}

.login-buttons {
    display: flex;
    justify-content: space-between;
}

button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    background: #007bff;
    transition: background 0.3s, transform 0.2s;
}

button:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* Spacing between buttons */
#signup-btn {
    margin-left: 10px;
}

/* Watermark */
.watermark {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #aaa; /* Light gray */
    font-style: italic;
}
