body {
    background-image: url('background-login.jpg');
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    text-align: center;
    max-width: 350px;
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 2rem;
    background: #fff;
}

.login-title {
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #0d6efd;
}

img {
    margin-bottom: 2rem;
}