@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
}

h1 {
    color: #e64a19; /* Darker orange */
    margin-bottom: 20px;
}

form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 300px;
    max-width: 90%;
}

input[type="text"],
input[type="password"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

button {
    background-color: #ff5722; /* Swiggy-like orange */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #e64a19; /* Darker orange on hover */
}

p {
    margin-top: 20px;
    font-size: 14px;
}

a {
    color: #ff5722; /* Swiggy-like orange */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#app-section {
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    max-width: 90%;
}

#data-container {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    max-height: 200px;
    overflow-y: auto;
    text-align: left;
}

#data-container p {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    padding: 8px;
    margin-bottom: 5px;
    border-radius: 4px;
}

#logout-button {
    margin-top: 20px;
    background-color: #e64a19; /* Darker orange for logout */
}

#logout-button:hover {
    background-color: #bf360c; /* Even darker orange on hover */
}