/* assets/css/style.css */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.login-container {
    max-width: 400px;
    margin: auto; /* Vertically and horizontally centers in flex column body if set properly, 
                     but standard Bootstrap 'd-flex align-items-center' on wrapper is better */
    padding-top: 5rem;
}

.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.brand-logo {
    font-size: 2rem;
    font-weight: bold;
    color: #0d6efd;
    text-align: center;
    margin-bottom: 2rem;
}
