body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    margin-top: 50px; /* Adjust this to move the content up */
}

.logo {
    height: 150px;
    margin-bottom: 20px;
}

.content h1 {
    font-size: 48px;
    margin: 0;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background-color: #333;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 5px;
    transition: background-color 0.3s, border-color 0.3s;
    margin-left: 10px; /* Add margin for spacing */
    margin-right: 10px; /* Add margin for spacing */
}

    .button:hover {
        background-color: #555;
        border-color: #aaa;
    }

label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

input {
    width: 200px; /* Adjusted width to make it smaller */
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #222; /* Darker background color */
    color: #f4f4f4; /* Light text color */
    text-align: center; /* Center the text inside the input */
    margin-left: auto;
    margin-right: auto;
    display: block;
}

    input::placeholder {
        color: #bbb; /* Light grey placeholder text */
    }

#loginButton {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #555;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    #loginButton:hover {
        background-color: #777;
    }

.error-message {
    color: #ff3333;
}

.success-message {
    color: #33ff33;
    margin-top: 40px; /* Add some margin to keep it away from the button */
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Add gap to space buttons evenly */
}
