.page {
    display: flex;
    align-items: center;
    padding-right: 20%;
}

form {
    display: grid;
    gap: 16px;
}

.btn-login {
    background-color: var(--secondary);
    border-radius: 8px;
    text-transform: none !important;
    color: #fff;
    font-size: 16px;
    font-weight: var(--font-weight-regular) !important;
}

.btn-login:hover {
    color: #fff;
    background: var(--primary);
}

.form-check-label {
    color: #fff;
    font-size: 12px;
}

.form-check-label a {
    color: #fff;
    text-decoration: underline;
}

.user-links {
    display: grid;
    margin-top: 16px;
}

.user-links a {
    color: #fff;
    font-size: 14px;
    line-height: 18px;
}

.user-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.card {
    background: transparent !important;
    box-shadow: none;
}

.card-header {
    border-bottom: 0;
    padding: 0 0 32px 0;
    display: flex;
    justify-content: center;
}

.card-header img{
    width: 300px;
}

.card-body {
    padding: 0;
}

@media (max-width: 991px) {
    .page {
        padding: 0;
        justify-content: center !important;
    }
}