body {
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #85DCBA;
    color: #fff;
    transition: background-color 0.3s ease;
}

.navbar {
    background-color: #34495e;
    padding: 10px;
    text-align: center;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar li {
    display: inline-block;
    margin-right: 20px;
}

.navbar a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #3498db;
}

#logoutBtn {
    background-color: #C38D9E;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#logoutBtn:hover {
    background-color: #2980b9;
}

#logoutBtn:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

button {
    background-color: #C38D9E;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2980b9;
}

button:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #fff;
}
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 40%;
	width: 40%;
    background-color: #41B3A3;
    color: #ecf0f1;
    transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
    .login-container {
        width: 80%;
    }
}
