html
{
    font-size: 14px;
}

@media (min-width: 768px)
{
    html
    {
        font-size: 16px;
    }
}

body
{
    background-color: #f7f7f7;
}

.login-container
{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card
{
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.login-logo img
{
    max-height: 90px;
    margin-top: -1rem;
    margin-bottom: 1rem;
}

.login-header
{
    color: #173365;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.btn-login
{
    background-color: #00bcff;
    color: white;
    font-weight: 500;
    border: none;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.btn-login:hover 
{
    background-color: #1288ff;
    color: white;
}

.qr-container
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
}