body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    text-align: center;
    max-width: 400px; /* Set maximum width for container */
    width: 100%; /* Make container responsive */
}

/* Logo Styling */
.logo {
    max-width: 200px; /* Adjust the size of the logo */
    margin: 0 auto 20px; /* Center the logo and add spacing below */
    display: block;
}

input {
    width: 100%;
    max-width: 300px; /* Set maximum width for input fields */
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    width: 100%;
    max-width: 300px; /* Match the width of input fields */
    padding: 10px 20px;
    margin-top: 10px; /* Add margin to separate button from input fields */
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

#error-message {
    color: red;
    margin-top: 10px;
}
