.logout-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    z-index: 100;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
    justify-content: center; /* Center vertically */
    padding: 20px; /* Add some padding around the container */
    background-color: #f9f9f9; /* Optional: background for the container */
    border-radius: 8px; /* Optional: rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: soft shadow */
}

form input {
    margin: 5px 0;
    padding: 8px;
    width: 200px;
}

form button {
    padding: 8px 16px;
    background-color: #4285f4;
    color: white;
    border: none;
    cursor: pointer;
}
.center-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
