body {
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #2c3e50; /* Background color */
    color: #ecf0f1; /* Text color */
    transition: background-color 0.3s ease;
}
button {
    background-color: #3498db;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

button:hover {
    background-color: #2980b9;
}

button:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #3498db; /* Label color */
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #2c3e50; /* Background color for the login container */
    color: #ecf0f1; /* Text color for the login container */
    transition: background-color 0.3s ease;
}
#logoutBtn {
    background-color: #e74c3c; /* Logout button color */
    position: fixed;
    top: 10px;
    right: 10px;
}

#logoutBtn:hover {
    background-color: #c0392b; /* Logout button hover color */
}