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

body {
    background-color: #0f0f0f;
    color: #00ffcc;
    font-family: 'Segoe UI', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Container Style */
.login-container,
.dashboard {
    width: 100%;
    max-width: 500px;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px #00ffcc;
}

/* Form Elements */
input,
textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: #0d0d0d;
    border: 1px solid #00ffcc;
    color: #00ffcc;
    border-radius: 5px;
    font-size: 1rem;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

button {
    width: 100%;
    padding: 12px;
    background: #00ffcc;
    color: #0f0f0f;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background: #00ffaa;
}

/* Text Links */
a {
    color: #00ffcc;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 15px;
}

a:hover {
    text-decoration: underline;
}

/* Accessibility: visually hidden labels */
.visually-hidden {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .login-container,
    .dashboard {
        padding: 20px;
        box-shadow: 0 0 10px #00ffcc;
    }

    input,
    textarea,
    button {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    input,
    textarea,
    button {
        font-size: 0.9rem;
        padding: 10px;
    }
}
.site-footer {
    background-color: #111;
    color: #00ffcc;
    text-align: center;
    padding: 20px 15px;
    font-size: 0.95rem;
    margin-top: 40px;
    border-top: 1px solid #00ffcc;
}

.site-footer a {
    color: #00ffcc;
    text-decoration: underline;
}

.site-footer a:hover {
    color: #00ffaa;
}

/* Mobile optimization */
@media (max-width: 480px) {
    .site-footer {
        font-size: 0.85rem;
        padding: 15px 10px;
    }
}
