/* Custom style to hide sidebar */
.app-sidebar {
    display: none !important;
}

/* Ensure the app content is fully expanded */
.app-content {
    width: 100% !important;
    margin-left: 0 !important;
}

/* Center the login form */
.login-container {
    min-height: 100vh;
    /* Full screen */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    /* Add some padding to ensure it doesn't touch the edges on smaller screens */
}

.login-form {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: #232f3e;
    /* Ensure the form background is white */
}