/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    transition: background-color 0.3s, color 0.3s;
}

h1 {
    color: var(--heading-color);
}

.container {
    background: var(--container-bg);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

input[type="file"], button, input[type="text"], input[type="password"] {
    margin: 10px 0;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button {
    background-color: var(--button-bg);
    color: var(--button-text);
}

button:hover {
    background-color: var(--button-hover-bg);
}

a {
    display: none;
}

.feedback {
    margin-top: 10px;
    color: var(--feedback-color);
}

:root {
    --bg-color: #f4f4f9;
    --text-color: #333;
    --heading-color: #333;
    --container-bg: #fff;
    --button-bg: #007bff;
    --button-text: white;
    --button-hover-bg: #0056b3;
    --feedback-color: #007bff;
}

[data-theme="dark"] {
    --bg-color: #333;
    --text-color: #f4f4f9;
    --heading-color: #f4f4f9;
    --container-bg: #444;
    --button-bg: #0056b3;
    --button-text: white;
    --button-hover-bg: #007bff;
    --feedback-color: #f4f4f9;
}
