body {
    background-image: url('../dist/img/login-background.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.brand-image{
    height: 150px;
    width: auto;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 2s ease, transform 2s ease;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
}
.brand-image.visible {
    opacity: 1;
    transform: scale(1);
}

.login-page .login-box {
    width: 550px;
    height: 650px;
    max-width: 95vw;
    max-height: 95vw;
}

.login-page .card {
    border-radius: 18px;
    overflow: hidden;
}

.subtittle {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    line-height: 1.4;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    margin: 8px auto;
    max-width: 800px;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 2s ease, transform 1.5s ease;
    position: relative;
    top: -20px;
}

.subtittle.visible {
    opacity: 1;
    transform: scale(1);
}

.login-box {
    position: relative;
    top: -50px;
}

.login-box .card {
    margin-top: -10px;
}

html{
    font-size: 1.1rem;
}