.auth-page {
    align-items: center;
    background-image: linear-gradient(rgba(255, 255, 255, .08), rgba(255, 255, 255, .08)), url('../images/background-login.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 1rem;
}

.auth-card {
    max-width: 300px;
    width: 100%;
}

.auth-logo {
    object-fit: contain;
}

.auth-card .btn-success {
    --bs-btn-bg: #198754;
    --bs-btn-border-color: #198754;
    --bs-btn-hover-bg: #157347;
    --bs-btn-hover-border-color: #146c43;
}

@media (max-width: 400px) {
    .auth-card {
        padding: 1rem !important;
    }

    .auth-logo {
        height: auto;
        max-width: 100%;
    }
}
