/* static/style.css */

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ensure the body takes the full height of the viewport */
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000000;
    background-image: url('./bg.png'); /* Ensure the correct path to the image */
    background-size: contain; /* Ensure the image covers the entire background while keeping its aspect ratio */
    background-repeat: no-repeat;
    background-position: center;
    /* background-blend-mode: overlay; Blend the background color with the image */
}

.container {
    width: 80%;
    max-width: 600px;
    margin: 0; /* Remove margin to avoid conflict with Flexbox centering */
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: absolute; /* Make the container positionable */
    cursor: move; /* Change cursor to indicate draggable element */
}

h1, h2, h3 {
    color: #333;
}

p {
    color: #555;
}

label {
    display: block;
    margin-bottom: 10px;
}

input[type="submit"], .btn {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

input[type="submit"]:hover, .btn:hover {
    background-color: #0056b3;
}

.error {
    color: red;
}

a {
    color: #007BFF;
}

a:hover {
    text-decoration: underline;
}
