body {
    background: #f5f7fb;
    min-height: 100vh;
}

.login-wrapper {
    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;
}

.login-card {
    width: 100%;

    max-width: 450px;

    border: 0;

    border-radius: 18px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08);
}

.brand-title {
    font-weight: 700;

    letter-spacing: -0.5px;
}

.form-control {
    min-height: 48px;

    border-radius: 10px;
}

.btn {
    border-radius: 10px;
}

.dashboard-card {
    border: 0;

    border-radius: 16px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.05);
}