body {
    background-color: #2c2c2c;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: top;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
}

.container {
    text-align: center;
}

.logo {
    max-width: 100px;
    margin: 20px auto;
}

h1 {
    margin-bottom: 20px;
}

.form-container {
    background-color: #444;
    border: 2px solid white;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    margin: 0 auto;
}

input {
    display: block;
    margin: 10px auto;
    padding: 15px;
    width: 90%;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    background-color: white;   /* Sets the background color to white */
    border: 1px solid lightgray; /* Sets a light gray border */
    padding: 10px;             /* Adds some padding inside the textarea */
    font-size: 16px;           /* Sets the font size */
    border-radius: 4px;       /* Optional: adds rounded corners */
    resize: vertical;          /* Optional: allows vertical resizing only */
    width: 90%;
}

button {
    padding: 10px 0px;
    background-color: #1e1e1e;
    margin: 10px auto;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

button:hover {
    background-color: #888;
}

.modal {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
    color: black;
    border-radius: 5px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

footer {
    text-align: center;
    margin-top: 20px;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    background-color: #2c2c2c; /* Matches the body background */
}
