/* Minimal login-specific styling that defers to main.css where possible */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    background-color: #121212; /* Assuming your app has a dark theme, adjust as needed */
}

.login-container {
    border-radius: 5px;
    padding: 25px;
    width: 100%;
    max-width: 400px;
}

/* Use the button styling from your main app */
#login-form button {
    width: 100%;
    margin-top: 20px;
}

/* Override any specific form elements if needed */
.form-group input {
    width: 100%;
    padding: 8px;
    margin-bottom: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Let app's h1 styling take precedence */
.login-container h1 {
    text-align: center;
}
