body {
    background-color: #111;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 18px;
}
a {
    color: #ccc;
    text-decoration: underline dotted;
}
a:hover {
    color: #f3f3f3;
    text-decoration: underline;
}
.container {
    max-width: 100%;
    margin: 0 auto;
    background-color: #222;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

form input[type="text"],
form input[type="email"],
form input[type="password"] {
    width: 60%;         /* Makes the input fields take up the full width of the container */
    padding: 15px;       /* Adds padding inside the input fields */
    font-size: 18px;     /* Increases the font size for readability */
    margin: 10px 0;      /* Adds margin between the input fields */
    border-radius: 8px;  /* Gives the input fields rounded corners */
    border: 1px solid #ccc; /* Border color for the input fields */
}

/* Style for the submit button */
form button[type="submit"] {
    width: 60%;         /* Makes the button take up the full width */
    padding: 15px;       /* Adds padding inside the button */
    font-size: 20px;     /* Increases the font size of the button */
    background-color: #4CAF50; /* Button background color */
    color: white;        /* Text color of the button */
    border: none;        /* Removes border */
    border-radius: 8px;  /* Gives the button rounded corners */
    cursor: pointer;    /* Adds a pointer cursor on hover */
    margin-top: 10px;    /* Adds space above the button */
}

/* Optional: Add hover effect for the submit button */
form button[type="submit"]:hover {
    background-color: #45a049; /* Darkens the button color on hover */
}

@media (min-width: 1250px) {
    .container {
        max-width: 1000px;
    }
}
#uploadFileBtn {
    display: inline-block;
    padding: 10px;
    margin: 20px;
    color: black;
    font-size: 22px;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#uploadFile {
    display: none; /* Hide the original file input */
}
@media (max-width: 1250px) {
    #uploadFileBtn {
        font-size: 42px;
    }
}
html, body {
    height: 100%;
}