/* styles.css */

/* Basic reset */
body, form {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Dark mode styling */
body {
    background-color: #181818;
    color: #e0e0e0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

form, .content, .error-message {
    display: block;
    margin-bottom: 20px;
    width: 300px;
    padding: 20px 30px;
}

form {
    background-color: #282828;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: #333;
    color: #e0e0e0;
    outline: none;
}

input[type="text"]:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

input[type="submit"] {
    padding: 10px 15px;
    background-color: #007BFF;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Additional styles in styles.css */

.content, .error-message {
    border: 1px solid #555;
    border-radius: 4px;
    background-color: #333;
    font-size: 1.5em;
}

.error-message {
    color: #ff0000;
}

.content-form textarea {
    display: block;
    width: 100%;
    height: 200px;
}

img.qr-image {
    margin: 2em;
}